Got the code? Welcome, builder!
You're heading into Invent the Future — instructors hand out the access code on day one.
You're heading into Invent the Future — instructors hand out the access code on day one.
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.
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.
Your scaffold is done when:
style.css is linked in the <head> of every pageYour 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.