<article>

The article element represents a self-contained composition that is independently distributable or reusable.

Since HTML5 Spec ↗

Syntax

<article>...</article>

Examples

<article>
  <h2>Breaking News</h2>
  <p>Story body.</p>
  <footer>By Jane Doe</footer>
</article>
Output
Renders a standalone content unit suitable for a feed item or blog post.

Notes

Use <article> for blog posts, comments, product cards, or forum entries. The test is whether the content makes sense on its own when syndicated.

Browser & runtime support

EnvironmentSince version
chrome 5.0
firefox 4.0
safari 5.0
edge 12

See also