< All the HTML Tags >

<article></article>

Video Coming Soon...

  • article

    Tag Type

    block

    Tag Category

    document structure

    Defines an independent piece of content

    Viewed

    1

    Examples

    1

Definition:

The HTML <article> tag represents a self-contained, independent piece of content that could stand alone, such as a news article, blog post, or forum entry.

Content within an <article> is generally designed to be independently distributable or reusable, making it an ideal tag for dynamic web applications and content management systems. The <article> tag is often combined with the <section>, <header>, and <footer> tags to define distinct parts of a webpage.

Proper use of `<article>` improves the structure and SEO of your webpage by explicitly defining sections of the page intended for independent distribution.

Attributes:

Global attributes (e.g., class, id, style) (e.g., class, id, style)

Accessibility:

Coming Soon…

Default article Example:

Using the <article> tag to define an article.
<article><h2>Article Title</h2><p>Article content.</p></article>

Default article Result:


Coming Soon…

Community Examples:

Coming Soon…
Coming Soon…