TOP CATEGORIES

×

What is article tag in HTML?

S

Shushi

The <article> tag in HTML5 defines independent, self-contained content, and the inside of <article> should be distributable/reusable (e.g., in RSS feeds).

Commonly used <article> Tag:

  • Blog posts, News articles, Forum posts, User comments, Product cards, etc.

Features of <article>

  • The <article> represents independent, reusable content.
  • It can contain headings (<h1>–<h6>), paragraphs, images, videos, and links.
  • The <article> tag makes content SEO-friendly and improves semantic meaning.
  • Often used with other semantic tags like <section>, <header>, <footer>, and <aside>.

0 votes

Your Answer