Back to Unit 6

Unit 6 Website Development - Tutorial 1

1.3 Create a correct project folder structure

Learn how to organise website files so links, images and stylesheets are easy to manage.

Why Structure Matters

A project folder keeps all website files together. A clear structure makes it easier to find files, link pages, load images and connect CSS.

Good organisation is especially important when a website grows from one page to several pages.

Recommended Structure

unit-6-website/
    index.html
    about.html
    timetable.html
    contact.html
    css/
        style.css
    images/
        logo.png
        hero.jpg

The HTML pages sit in the main folder. CSS files go in a css folder. Images go in an images folder.

Build It Yourself

  1. Create a main folder called unit-6-website.
  2. Add index.html, about.html, timetable.html and contact.html.
  3. Create a folder called css.
  4. Create a folder called images.
  5. Create style.css inside the css folder.
  6. Add at least one suitable image to the images folder for the School Coding Club homepage.

Common Mistakes

Success Checklist