Key Ideas
1Choosing a Text Editor. A text editor is where you write code. Unlike Microsoft Word, text editors save plain text — no formatting, no hidden characters. Your choice of editor dramatically af...
2Installing VS Code & Essential Extensions. Download VS Code from code.visualstudio.com (it's free and open source). After installing, add these extensions from the Extensions panel (Ctrl/Cmd + Shift + X):
3Creating Your First HTML Project. Good file organisation from day one saves enormous pain later. Follow this setup every time you start a new web project:
4Live Server — Instant Preview. Live Server is the single most useful extension for HTML development. It launches a local web server and automatically refreshes the browser every time you save your f...
5Browser DevTools. DevTools is the built-in browser inspector. Every serious web developer has it open constantly. Open it with F12 (or right-click → "Inspect" on any page element).