Interview Question

What is the footer tag?

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

💡 Concept ✅ Quick Revision 🌐 HTML

Answer

`<footer>` is an element for closing information. • It often contains copyright, contact links, 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

<footer>© 2026 My Site</footer>

⚡ Quick Revision

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