Article Tag in HTML 5

Article Tag in HTML 5 

 
The <article> tag defines the title that could be 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.
  1. <!DOCTYPE html>  
  2. <html>  
  3.     <body>  
  4.         <article>  
  5.             <a href="www.msn.com>This is msn sites</a>  
  6.             <br />  
  7. This test demo  
  8.         </article>  
  9.     </body>  
  10. </html>