You've learned about HTML structure, headings, and paragraphs. Now let's practice using these three building blocks together!
Think of it like assembling a puzzle—each piece has its place in the bigger picture.
Engagement Message
Ready to put your knowledge to the test and practice creating a simple webpage?
Type
Multiple Choice
Practice Question
You want to add the main title of your webpage, which will be visible to all users, using an <h1>
tag. In which section of the HTML document should you place it?
A. Inside the <head>
section
B. Inside the <body>
section
C. Inside the <html>
tag, but outside of <head>
and <body>
D. Immediately after <!DOCTYPE html>
Suggested Answers
- A
- B - Correct
- C
- D
Type
Multiple Choice
Practice Question
A blog post has this content structure. Which heading tag would you use for each level?
- "My Travel Blog" (main page title)
- "Trip to Paris" (main article title)
- "Day 1: Arrival" (section within the article)
- "Finding Our Hotel" (subsection)
A. h1, h2, h3, h4 B. h1, h1, h2, h3 C. h1, h2, h2, h3 D. h2, h1, h3, h4
