Multiple choice technology web technology

Choose the correct HTML tag for the largest heading?

  1. <h6>

  2. <head>

  3. <heading>

  4. <h1>

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

HTML headings range from

(largest, most important) to

(smallest, least important).

is the correct tag for the largest heading. contains metadata, not content headings, and is not a valid HTML tag.

AI explanation

is the HTML tag for the largest, top-level heading; heading levels run from

(largest) down to

(smallest), so
is actually the smallest heading, not the largest. is a document metadata container (holds , , , etc.) and produces no visible heading at all. is not a valid HTML tag. Only

correctly represents the largest heading.