Chapter 5 Answer Key
List Land Adventure
Organizing Ideas with Lists
Fill in the Blanks
1. Numbered lists use <ol> tag.
2. Bullet lists use <ul> tag
3. Each list item uses <li> tag
4.Lists help organize information
Match the List Types
| Tag | Meaning |
|---|---|
| A. <ol> | 2. Numbered List |
| B. <ul> | 1. Bullet List |
| C. <li> | 3. Single List Item |
A → 2
B → 1
C → 3
Choose the Correct Tag
1. Steps to bake a cake
✅ b) <ol>
2. List of favorite fruits
✅ c) <ul>
3. Individual item inside list
✅ a) <li>
Taggy Challenge
Use bullets when the order of items does not matter, such as favorite foods, hobbies, or shopping lists.
Code Explorer
<h3>My Daily Tasks</h3> <ol> <li>Wake up</li> <li>Study HTML</li> <li>Build webpage</li> </ol>
1. Which tag creates the numbered list?
✅ <ol>
2. How many list items are there?
✅ 3
3. What does <li> mean?
✅ List Item
Debug Mission
Errors Found:
✅ Mango item missing closing tag
✅ Invalid list structure
Correct Code:
<ul> <li>Apple</li> <li>Banana</li> <li>Mango</li> </ul>
Build Your Own List
Sample Answer:
<h3>My Favorite Fruits</h3> <ul> <li>Apple</li> <li>Mango</li> <li>Banana</li> </ul>
Quick Builder Check
1. Which tag creates bullet points?
✅ <ul>
2. Which tag creates numbering?
✅ <ol>
3. Why are lists useful on webpages?
✅ Lists organize information clearly and make webpages easier to read.
🏆 Builder Badge Earned
List Master
Congratulations! You can now organize webpage content using HTML lists.
