Skip to main content

The <article> Element

As defined in the HTML Living Standard, the <article> element represents a complete, or self-contained, composition in a document, page, application, or site and that is, in principle, independently distributable or reusable.

Visual Example:

The Future of Inclusivity

Published on April 13, 2026

Native web standards are the foundation of a truly accessible digital world...

<article> <header> <h2>Blog Post Title</h2> <p>Posted by Jane Doe</p> </header> <p>This is the article content...</p> </article> View HTML Living Standard: The article element

Key Characteristics & Best Practices

WCAG Requirement: Info and Relationships

Success Criterion 1.3.1 (Level A): Information, structure, and relationships conveyed through presentation can be programmatically determined.

Using <article> provides a landmark role for assistive technologies. Screen readers allow users to navigate quickly between different "article" regions, allowing them to skip irrelevant content or jump to specific posts.

Understand SC 1.3.1: Info and Relationships

Common Use Cases

Appropriate uses for the <article> tag include:

A11y Tip: Article vs. Section

Use <section> for thematic groupings of content that are part of a larger whole. Use <article> for content that can stand on its own.