HTML Dog
Skip to navigation

HTML Tag: article

A self-contained, standalone section of an HTML document. This element could be used just once, if you think of a blog post as an article, for example, or a number of times, if you imagine replicating a traditional newspaper page with numerous articles.

Optional Attributes

Global attributes

Example


<h1>The Daily News</h1>

<article>
    <h2>Man Eats House</h2>
    <!-- article content -->
</article>

<article>
    <h2>Martian Mice Invade Ecuador</h2>
    <!-- article content -->
</article>