Recall & Review
beginner
What is the purpose of HTML heading tags
<h1> to <h6>?HTML heading tags define the titles and subtitles on a webpage.
<h1> is the main title, and <h6> is the smallest subtitle. They help organize content and improve readability.Click to reveal answer
beginner
Which heading tag should be used for the main title of a webpage?
The
<h1> tag should be used for the main title. It is the most important heading and usually appears once per page.Click to reveal answer
beginner
How many levels of headings are available in HTML?
There are six levels of headings in HTML:
<h1>, <h2>, <h3>, <h4>, <h5>, and <h6>. Each level represents a smaller or less important heading.Click to reveal answer
intermediate
Why is it important to use headings in order (
<h1> before <h2>, etc.)?Using headings in order helps screen readers and search engines understand the structure of the page. It also makes the content easier to follow for all users.
Click to reveal answer
intermediate
Can you use multiple
<h1> tags on one webpage?While HTML allows multiple
<h1> tags, it is best practice to use only one main <h1> per page for clarity and better SEO.Click to reveal answer
Which HTML tag represents the smallest heading?
✗ Incorrect
The
<h6> tag is the smallest and least important heading level.What is the main purpose of using heading tags in HTML?
✗ Incorrect
Headings organize content and help users and search engines understand the page structure.
Which heading tag should you use for a subtitle under an
<h1> heading?✗ Incorrect
The
<h2> tag is used for subtitles directly under the main <h1> heading.Is it good practice to skip heading levels, for example, going from
<h1> to <h4>?✗ Incorrect
Skipping heading levels can confuse assistive technologies and make the page structure unclear.
Which heading tag is usually used only once per page?
✗ Incorrect
The
<h1> tag is typically used once as the main title of the page.Explain why using heading tags in the correct order is important for web accessibility and SEO.
Think about how people and machines read your page.
You got /4 concepts.
Describe the difference between
<h1> and <h6> tags and when to use each.Consider importance and size of headings.
You got /4 concepts.