You are here : htmlHTML 5article

<article> - HTML 5

The <article> tag specifies independent, self-contained content.

An article should make sense on its own and it should be possible to distribute it independently from the rest of the site.

Potential sources for the <article> element:

  • Forum post
  • Blog post
  • News story
  • Comment


Syntax

<article> .... Contents Here.... </article>


Example

<article>
  <h1>Google Chrome</h1>
  <p>Google Chrome is a free, open-source web browser developed by Google, released in 2008.</p>
</article>


Output / Return Value


Limitations


Alternatives / See Also


Reference