This is a small static website scaffold you can customize with your photo, bio, and recipe links.
Files added:
- index.html — main page
- styles.css — styles
- script.js — tiny interactions
- assets/your-photo.svg — placeholder profile image
Quick start:
- Open the site locally by double-clicking
index.htmlin your browser.
OR serve it from a simple local server (recommended) from the project root:
# Python 3
python3 -m http.server 8000
# then open http://localhost:8000How to customize:
- Replace
assets/your-photo.svgwith your own photo file and keep the same pathassets/your-photo.svgor update thesrcinindex.html. - Replace the intro text in
index.html(the hero area) with your own bio. - For each recipe card, replace the
hrefwith the link to your blog post or recipe page.
Want changes? Tell me your preferred color palette, fonts, or layout and I can update it.
- Create a GitHub repository (for example
roottoripe) on GitHub. - Add the remote and push your local repo (replace
<YOUR-REPO-URL>with the HTTPS or SSH URL GitHub gives you):
git remote add origin <YOUR-REPO-URL>
git branch -M main
git push -u origin main- The repository includes a GitHub Actions workflow that will automatically deploy the site to GitHub Pages whenever you push to
main.
Alternative (push & create repo via gh CLI):
gh repo create YOUR_USERNAME/roottoripe --public --source=. --remote=origin --pushAfter the first successful run, your site will be available at https://<YOUR_USERNAME>.github.io/<repo-name>/ (project pages) or https://<org-or-username>.github.io/ for a repo named USERNAME.github.io.