SIGN UP MEMBER LOGIN:    
Blog

Article Tag in HTML 5

Posted by Shirsendu Nandi Blogs | HTML 5 Oct 13, 2011
In this blog, I will describe what is the article tag in HTML 5.
The <article> tag defines the title that could be a news, article, blog post, forum post, or other articles which can be distributed independently from the rest of the site.

The following code snippet shows how to use the article tag.


<!DOCTYPE html>
<html>
<body>

<article>
<a href="www.msn.com>This is msn sites</a>
<br />
This test demo
</article>

</body>
</html>

share this blog :
post comment