Super simple one-page portfolio using plain HTML + CSS. Perfect for GitHub Pages 🚀
- Go to GitHub and create a New Repository
- Name it exactly:
your-username.github.io
(replaceyour-usernamewith your actual GitHub username) - Set visibility to Public
- Click Create repository
-
Clone the repo to your computer:
git clone https://github.com/fossmec/LetsGitIt2026.git
-
Enter the folder:
cd LetsGitIt2026
- Open
index.htmlin VS Code (or any editor) - Replace:
- Your name
- Bio / tagline
- Social links / email / portfolio links
- Optional: profile picture path
- Save the file
- Change the remote URL to point to your personal .github.io repo:
git remote set-url origin https://github.com/your-username/your-username.github.io.git
- Stage, commit and push:
git add index.html git commit -m "Initial portfolio launch" git push -u origin main
- Wait ~30–90 seconds (GitHub Pages needs a moment to build)
- Open your browser and visit:
https://your-username.github.io
Your personal site should now be live!
Made with ❤️ for #LetsGitIt2026
Original template: fossmec/LetsGitIt2026