Interview Question

What is the aside tag?

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

💡 Concept ✅ Quick Revision 🌐 HTML

Answer

`<aside>` is an element for related but secondary content. • It can hold tips, side notes, or related links. • 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

<aside>Tip: Save your work.</aside>

⚡ Quick Revision

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