Interview Question

What is the section tag?

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

💡 Concept ✅ Quick Revision 🌐 HTML

Answer

`<section>` is an element that groups content about one theme. • A section usually has its own heading. • 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

<section><h2>Features</h2></section>

⚡ Quick Revision

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