Interview Question

What is the article tag?

`<article>` should be used for its proper HTML purpose.

💡 Concept ✅ Quick Revision 🌐 HTML

Answer

`<article>` is an element for self-contained content. • A news story, blog post, or forum message can be an article. • Browsers apply the native parsing and behavior defined for this element. • Using its native meaning helps assistive technology understand the content when the element has accessibility semantics.

💡 Simple Example

<article><h2>School News</h2></article>

⚡ Quick Revision

`<article>` should be used for its proper HTML purpose.