Platform Fundamentals
30-45 minBeginner
Architecture and file structure for 13 major web stacks.
Prerequisites
- Relevant Runtime (Node/Python/Ruby/Go/Java/.NET)
Beginner Recommended
Static HTML
The Classic.
1
File Structure
1
Classic Structure:
2
├── index.html # Homepage
├── about.html # /about
├── css/
│ └── style.css # Global Styles
├── js/
│ └── app.js # Scripts
└── images/
└── logo.png
2
Local Development
1
- Create: Make a folder
mysite.
2
- Run: VS Code > Right Click
index.html> Open with Live Server.
Verification Checklist
- Project Loads on localhost