Lesson 5: Structuring a Multi-Page Website

Folder Structure

Organize your files into folders so your project is easy to navigate.

my-website/
  index.html
  about.html
  contact.html
  css/
    style.css
  images/
    logo.png

Navigation

Use a consistent navigation bar on every page so visitors can move around easily.

<nav>
  <a href="index.html">Home</a>
  <a href="about.html">About</a>
  <a href="contact.html">Contact</a>
</nav>

Next Steps

This completes the beginner hobbyist series. From here, you can explore more advanced topics like JavaScript, responsive design, and hosting your site online.