Interview Question

What is the <head> tag?

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

💡 Concept ✅ Quick Revision 🌐 HTML

Answer

`<head>` is the section that stores information about the page. • It contains metadata and linked resources, not the main visible content. • 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

<head><title>My Page</title></head>

⚡ Quick Revision

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