<article> Tag in HTML 5

In this article I am going to tell about <article> tag in HTML5.
  • 1898

Definition

<article> tag in firstly introduced in HTML 5. The content with <article> tag is independent. By "independent" I mean that its contents could stand alone.

Examples of article content could include a blog post, a newspaper article, a user comment entry.

Supporting Browsers

Internet Explorer 9 or higher version, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.

Example
 

<html>
<body>
       <article> Dot Net Heaven
          <a href="/category/html-5">HTML 5</a>
          <br >
         This is a test demo of article tag
       </article>
</body>
</html>

Output

article.JPG

Further Readings

You may also want to read these related articles

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.