This is a static website project for the Vibe Coders high school workshop series. The site is built with pure HTML and CSS, designed for easy collaboration and deployment on GitHub Pages.
index.html
– Home pagecss/style.css
– Main stylesheet- (Other pages and assets will be added as the project grows)
- Double-click
index.html
or right-click and choose "Open With" → your web browser. - This works for basic HTML/CSS preview.
- Install Visual Studio Code.
- Open this project folder in VS Code.
- Go to Extensions (sidebar) and search for Live Server by Ritwick Dey. Click Install.
- Right-click
index.html
in the file explorer and select Open with Live Server. - Your site will open at
http://localhost:5500
(or similar) and auto-refresh on changes.
If you have Node.js, you can run:
npx serve .
Or, if you have Python 3:
python3 -m http.server
Then open http://localhost:8000 in your browser.
- The site is designed for static hosting on GitHub Pages.
- Push your changes to the
main
branch and enable GitHub Pages in your repository settings.
For more details, see INSTRUCTIONS.md
.