Sprint 1 kickoff

Sprint 1 has one goal: a working scaffold. By the end of today, every page your team planned exists as an HTML file, every page loads in the browser, and every page is linked via a shared navigation bar.

Nothing needs to look good today. Structure first.

Folder structure

Create one project folder with this layout:

project-name/
├── index.html
├── about.html
├── resources.html
├── css/
│   └── style.css
└── js/
    └── script.js

Every HTML page links to the same css/style.css. The script.js stays empty for now.

Sprint 1 done conditions

Your scaffold is done when:

  • Every planned page exists as an HTML file
  • Every page loads in the browser with no errors
  • Every page has the same navigation bar with working links to all other pages
  • style.css is linked in the <head> of every page

First prompt

Your prompting plan from yesterday has your first prompt. If you're unsure where to start:

Generate the complete HTML boilerplate for a page called resources.html. Include:
the HTML5 doctype, a head with a link to css/style.css, a nav with links to
index.html, resources.html, and about.html, an empty main section, and a footer.
Output ONLY the HTML. No explanation, no markdown fences.

Run it, open the file in your browser, check the nav links, fix anything broken. Repeat for each page.