Chapter 11 Answer Key
The Big Build
Final Mission
Builder Checklist
✅ Heading
✅ Paragraph
✅ List
✅ Image
✅ Link
✅ Table or Form
✅ Proper Structure
Sample Final Project
<!DOCTYPE html> <html> <head> <title>My First Webpage</title> </head> <body> <h1>Welcome to My Webpage</h1> <p>This is my first webpage built in Webville.</p> <h2>My Favorite Fruits</h2> <ul> <li>Apple</li> <li>Mango</li> <li>Banana</li> </ul> <img src="fruit.jpg" alt="Fruit Basket"> <p> <a href="https://example.com"> Visit My Favorite Website </a> </p> <table border="1"> <tr> <th>Fruit</th> <th>Color</th> </tr> <tr> <td>Apple</td> <td>Red</td> </tr> <tr> <td>Mango</td> <td>Yellow</td> </tr> </table> </body> </html>
Debug Check
1. Did you close all tags?
✅ Yes
2. Are headings clear?
✅ Yes
3. Do links work?
✅ Yes
4. Does image have alt text?
✅ Yes
Builder Tips
✅ Use meaningful headings.
✅ Add alt text to images.
✅ Test links before publishing.
✅ Close every HTML tag properly.
✅ Add alt text to images.
✅ Test links before publishing.
✅ Close every HTML tag properly.
🏆 Final Builder Badge Earned
Webville Master Builder
Congratulations! You have completed all Webville chapters and built your first complete webpage.
