Complete the code to create the largest heading on the page.
<[1]>Welcome to my website</[1]>
The h1 tag creates the largest heading, usually used for main titles.
Complete the code to create a subheading smaller than h2 but bigger than h4.
<[1]>Chapter 1: Introduction</[1]>
The h3 tag is smaller than h2 but larger than h4, perfect for subheadings.
Fix the error in the heading tag to properly close it.
<h2>About Us[1]The closing tag must match the opening tag. Since the opening is h2, the closing must be .
Fill both blanks to create a section with a main heading and a smaller subheading.
<[1]>My Blog</[1]> <[2]>Latest Posts</[2]>
The main heading uses h1 and the subheading uses h3 to show hierarchy.
Fill all three blanks to create a nested heading structure with decreasing sizes.
<[1]>Site Title</[1]> <section> <[2]>Section Title</[2]> <article> <[3]>Article Title</[3]> </article> </section>
The largest heading is h1 for the site title, then h2 for the section, and h3 for the article, showing clear hierarchy.