HTML <article> Tag

<article>
<h4>Avocado Nutrition</h4>
<p>Next time you're at the market, try buying some avocados. Avocados are high in dietary fiber, vitamin C, vitamin K and folate. They are also low in cholesterol and Sodium.</p>
</article>

How to Use the above Code

  1. Replace the article content with your own.
  2. Place it anywhere within the body of the document.

W3C says this about 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, e.g. in syndication. This could be a forum post, a magazine or newspaper article, a blog entry, a user-submitted comment, an interactive widget or gadget, or any other independent item of content.

An HTML document can have many <article> elements, and you can even nest <article> tags within each other.

Also, <article> can have their own <header> and <footer> elements.