<article>

Draft

Definition

The <article> element is used to identify independent, self-contained pieces of content that can be distributed across different pages on a website.

For example, an article about a new product could be split up into multiple pages on a company’s website, with each page containing its own unique set of product images and descriptions.

The article element isn’t limited to long form content though - it can also be used for shorter pieces of text, like blog posts or news articles.

By using the article element correctly, you can help make your website’s content more readable and manageable for users.

<article>
  <h1>Article Title</h1>
  <p>Article content...</p>
</article>