SyntaxStudy
Sign Up
Home HTML Reference <article>

<article>

tag HTML5

Represents self-contained content that could stand alone, such as a blog post or news article.

Syntax

<article> ... </article>

Example

html
<article>
    <header>
        <h2>Getting Started with HTML</h2>
        <time datetime="2024-03-15">March 15, 2024</time>
    </header>
    <p>HTML is the foundation of every website...</p>
    <footer>By <a href="/author/jane">Jane Doe</a></footer>
</article>