Chapter 8 Answer Key
Tara Table's Tidy Town
Organizing Information with Tables
Fill in the Blanks
1. Tables start with <table> tag.
2. A row is created using <tr>.
3. Headings use <th>.
4. Normal data uses <td>.
Choose the Correct Tag
1. Table heading
✅ b) <th>
2. Table row
✅ a) <tr>
3. Normal table data
✅ b) <td>
Taggy Challenge
Headings help readers understand what information each column contains and make tables easier to read.
Match the Table Parts
| Tag | Meaning |
|---|---|
| A. <table> | 2. Table container |
| B. <tr> | 4. Table row |
| C. <th> | 1. Table heading |
| D. <td> | 3. Table data |
A → 2
B → 4
C → 1
D → 3
Code Explorer
<table> <tr> <th>Fruit</th> <th>Color</th> </tr> <tr> <td>Apple</td> <td>Red</td> </tr> </table>
1. How many columns are in this table?
✅ 2
2. What are the headings?
✅ Fruit, Color
3. Which tag creates rows?
✅ <tr>
Debug Mission
Error Found:
Correct Code:
<table> <tr> <th>Name</th> <th>Age</th> </tr> <tr> <td>Taggy</td> <td>10</td> </tr> </table>
Build Your Own Table
Sample Answer:
<table> <tr> <th>Name</th> <th>Age</th> </tr> <tr> <td>Tara</td> <td>10</td> </tr> </table>
Quick Builder Check
1. Which tag starts a table?
✅ <table>
2. Which tag creates headings?
✅ <th>
3. Why are tables useful?
✅ Tables organize information into rows and columns so information is easier to read.
🏆 Builder Badge Earned
Table Builder
Congratulations! You can now create and organize information using HTML tables.
