Module 12 of 12 — Final Module!

🎓 Congratulations!

You've reached the final module of the HTML Fundamentals Course by Ethioweb.net! You've learned everything from basic document structure to semantic HTML5, forms, tables, multimedia, SEO, and best practices.

Now it's time to put it all together in a complete capstone project that demonstrates your mastery of HTML.

📋 Project Brief: Ethiopian Coffee House

You will build a 5-page website for a fictional Ethiopian coffee shop called "Abyssinian Brew" located in Addis Ababa. This project will test every skill you've learned.

Required Pages

PageFileRequired Content
Homepage index.html Hero section, about snippet, featured products, testimonials
About Us about.html Company story, mission/vision, team members with photos
Menu menu.html Food and drink items with prices in an accessible table
Gallery gallery.html Photo gallery with captions, using figure/figcaption
Contact contact.html Contact form, address, map embed, business hours

✅ Technical Requirements

Your project must meet all of these criteria to qualify for the certificate:

1. Valid HTML5

2. Semantic HTML5 Structure

3. Accessibility

4. Links and Navigation

5. Content Elements

6. SEO and Metadata

7. Code Quality

🗂️ Suggested File Structure

abyssinian-brew/ ├── index.html ├── about.html ├── menu.html ├── gallery.html ├── contact.html ├── css/ │ └── style.css ├── images/ │ ├── logo.png │ ├── hero-coffee.jpg │ ├── team/ │ │ ├── owner.jpg │ │ ├── barista.jpg │ │ └── manager.jpg │ └── gallery/ │ ├── shop-interior.jpg │ ├── coffee-beans.jpg │ ├── brewing.jpg │ └── customers.jpg └── favicon.ico

💡 Page-by-Page Guide

Homepage (index.html)

<header> <img src="images/logo.png" alt="Abyssinian Brew Coffee House"> <nav>...5 page links...</nav> </header> <main> <section> <h1>Welcome to Abyssinian Brew</h1> <p>Authentic Ethiopian coffee in the heart of Addis Ababa...</p> </section> <section> <h2>Our Featured Coffee</h2> <ul>...3-4 featured items...</ul> </section> <section> <h2>What Our Customers Say</h2> <blockquote>...testimonial...</blockquote> </section> </main> <footer> <p>&copy; 2026 Abyssinian Brew. All rights reserved.</p> </footer>

About Us (about.html)

Menu (menu.html)

Gallery (gallery.html)

Contact (contact.html)

🏆 Submission Checklist

Before submitting your project, verify every item:

Final Checklist
  • ☐ All 5 pages created and linked together
  • ☐ W3C Validator shows 0 errors on every page
  • ☐ Semantic HTML5 used throughout (no div soup)
  • ☐ One h1 per page, proper heading hierarchy
  • ☐ All images have alt text
  • ☐ All forms have labels
  • ☐ Tables are accessible with thead/tbody/scope
  • ☐ Navigation works on every page
  • ☐ External links use target="_blank" + rel="noopener noreferrer"
  • ☐ Meta titles and descriptions on every page
  • ☐ Consistent indentation and formatting
  • ☐ Logical file and folder organization
  • ☐ Favicon included
  • ☐ UTF-8 and viewport meta tags on all pages

🎓 Earn Your Certificate

Once your capstone project passes all requirements, you are eligible for the HTML Foundations Professional certificate from Ethioweb.net.

View Your Certificate →