Loading

Quipoin Menu

Learn • Practice • Grow

Q1. What is the purpose of the <head> section in HTML?
The <head> section contains meta-information about the HTML document, such as title, character set, styles, scripts, and links to external resources.

Q2. What elements can be placed inside the <head> tag?
Common elements: <title>, <meta>, <link>, <style>, <script>, <base>.

Q3. What is the difference between <head> and <header>?
<head> contains document metadata and is not displayed. <header> is a semantic element displayed in the page containing introductory content.

Q4. Why is the <title> tag important and where is it placed?
The <title> tag, placed in <head>, defines the page title shown in browser tabs and search engine results, crucial for SEO.

Q5. What is the viewport meta tag used for?
The viewport meta tag controls the page's dimensions and scaling on mobile devices, essential for responsive design.