Back to Unit 6

Unit 6 Website Development - Tutorial 1

1.18 Review the finished Tutorial 1 website

Check that the School Coding Club static website is functional, well structured and ready for CSS in Tutorial 2.

Finished Product

At the end of Tutorial 1, you should have a working static website. It will not look polished yet, because the proper CSS styling happens in Tutorial 2, but the HTML product should already work.

unit-6-website/
    index.html
    about.html
    timetable.html
    contact.html
    css/
        style.css
    images/
        coding-club.jpg

Key Design Principles

Principle What to check
Purpose The user can quickly tell what the website is about.
Audience The content suits the people who will use the website.
Navigation Users can move between pages easily.
Consistency Pages use a similar structure and menu.
Accessibility Headings, semantic HTML and alt text make the page easier to use.

Functional Product Test

  1. Open index.html in a browser.
  2. Check that the homepage introduces the School Coding Club clearly.
  3. Click the About link and check that about.html opens.
  4. Click the Timetable link and check that timetable.html opens.
  5. Click the Contact link and check that contact.html opens.
  6. Use the navigation menu to return to the homepage.
  7. Check that the homepage image appears.
  8. Check that the homepage includes activity articles for websites, games and apps.
  9. Check that the about page includes an image, value articles, team information and joining steps.
  10. Check that the timetable page includes Monday to Friday sessions and project highlight articles.
  11. Check that the contact page includes contact details, contact option articles and a contact form.
  12. Check that the page still makes sense if the image does not load, because the alt text is meaningful.
  13. Check that all four pages use <header>, <nav>, <main>, <section> and <footer> where appropriate.
  14. Check that all four pages link to css/style.css.

Common Mistakes

Ready For Tutorial 2 Checklist