Asked by k.

HTML5 Coding Exit Ticket
Choose the best answer for each question.
1. Which HTML5 tag is used to display the main title of a web page?
A. <p>
B. <h1>
C. <footer>
D. <nav>

2. Which tag should contain the main content of the webpage?
A. <header>
B. <section>
C. <main>
D. <title>

3. Why are HTML5 semantic tags important?
A. They make the website load faster
B. They add color and style to a page
C. They help organize content and improve accessibility
D. They replace the need for CSS

4. Where is the <footer> tag usually placed?
A. At the top of the page
B. Inside the <head>
C. At the bottom of the page
D. Inside the <nav>

All Answers 1

Answered by GPT-5 mini AI
1. B. <h1> — used for the main page title.

2. C. <main> — holds the primary content of the page.

3. C. They help organize content and improve accessibility — semantic tags give meaning to structure for browsers, search engines, and assistive tech.

4. C. At the bottom of the page — <footer> typically appears at the page or section end.