Run Locally on Your Computer
Method 1: Simple File Opening
Right click your HTML file → Open With → Web Browser
Works for basic websites without backend functionality
Method 2: Local Server (Recommended)
Option 1: VS Code Live Server
- Install VS Code
- Install "Live Server" extension
- Right click HTML file → "Open with Live Server"
Option 2: Python Simple Server
python3 -m http.server 8000
Run in terminal from your project folder