Chapter 4 Answer Key
The Fancy Font Festival
Styling Text in Webville
Fill in the Blanks
1. <strong>
2. <i>
3. <sup>
4. <sub>
Choose the Correct Tag
1. To show IMPORTANT text
✅ b) <strong>
2. To make text italic
✅ a) <i>
3. For mathematical powers (x²)
✅ b) <sup>
Taggy Challenge
Because if everything is highlighted, nothing stands out. Highlighting only important words helps readers focus on key information.
Match the Formatting
| Tag | Effect |
|---|---|
| A. <b> | 2. Bold text |
| B. <i> | 4. Italic text |
| C. <sup> | 3. Text above line |
| D. <sub> | 1. Text below line |
Answers:
A → 2
B → 4
C → 3
D → 1
A → 2
B → 4
C → 3
D → 1
Code Explorer
<p>This is <strong>important</strong> information.</p> <p>Water formula is H<sub>2</sub>O.</p> <p>2<sup>3</sup> equals 8.</p>
1. Which word looks bold and important?
✅ important
2. Which tag created the small number in H₂O?
✅ <sub>
3. Which tag shows powers like 2³?
✅ <sup>
Debug Mission
Errors Found:
✅ Missing </b>
✅ Missing </sub>
✅ Missing </sub>
Correct Code:
<p>This is <b>bold text</b></p> <p>Water is H<sub>2</sub>O</p>
Style Your Own Text
Sample Answer:
<p><b>I love coding.</b></p> <p><i>Webville is amazing.</i></p> <p>2<sup>4</sup> = 16</p>
Quick Builder Check
1. Which tag makes text italic?
✅ <i>
2. Which tag shows power numbers?
✅ <sup>
3. Why do we use formatting?
✅ Formatting makes important information easier to read and understand.
🏆 Builder Badge Earned
Formatting Master
Congratulations! You can now style text using HTML formatting tags.
