Set up the basic HTML/CSS/JS project structure for both games.
Every web-based game starts with the same foundation: an HTML file for structure, a CSS file for appearance, and JavaScript files for logic. We create a clean folder structure that will support the entire project.
Create the project folder for AMILURI.com. Use the same folder structure shown in the code scaffolding below. This will be the home for all game code going forward.
Create the project folder for Built: Foundations. Use the same folder structure shown in the code scaffolding below. This will be the home for all game code going forward.
Page loads in browser with no errors. Console shows "Game Loaded".
No game logic. No visuals. No Three.js yet. Just the skeleton.
Forgetting to link the CSS or JS file — double-check the <link> and <script> tags in your HTML.
Using wrong file paths — make sure the filenames match exactly, including capitalization.
Not checking the browser console for errors — always open DevTools (F12) and look at the Console tab.
Walk through each file together. Explain what each file does. This is the first time they see real code — go slow. Make sure they understand the relationship between HTML, CSS, and JS before moving on.