Simple static website project containing:
index.html— main pagecontact.html— contact pagestyles.css— stylesheet
Quick start
- Open
index.htmlin your browser to view the site.
Or run a simple local server:
# from the project root
python3 -m http.server 8000
# then open http://localhost:8000Editing
- Update HTML files directly in the project folder.
- Update styles in
styles.css.
Notes
- No build step required — this is a static site.
- Add more pages or assets in this folder.