A minimal, static personal site built for GitHub Pages. No build step, no frameworks, just HTML and CSS.
This folder is wired to remote Pa7ch3s/personal-website → GitHub Pages project URL https://pa7ch3s.github.io/personal-website/ once Pages is on.
- Push (from this directory):
git push origin main - On GitHub: open Pa7ch3s/personal-website → Settings → Pages
- Build and deployment → Source: Deploy from a branch → Branch
main, folder/ (root)→ Save - Wait ~1–2 minutes, then open
https://pa7ch3s.github.io/personal-website/
Want the shorter URL https://pa7ch3s.github.io (no /personal-website)? Create a repo named pa7ch3s.github.io, put these same files at the root of that repo, enable Pages on main + /, and optionally set the personal-website repo to archive or redirect.
- Create a new repo named exactly
yourusername.github.io(replace with your GitHub username). - Push this project into that repo:
cd personal-website git init git add . git commit -m "Initial commit: Principal Security Architect site" git branch -M main git remote add origin https://github.com/yourusername/yourusername.github.io.git git push -u origin main
- Enable Pages: Repo → Settings → Pages → Source: Deploy from a branch → Branch: main → Folder: / (root) → Save.
- After a minute or two, the site will be live at
https://yourusername.github.io.
- Push this folder to a repo (e.g.
personal-website). - Settings → Pages → Source: Deploy from a branch → Branch: main → Folder: / (root) → Save.
- Site URL:
https://yourusername.github.io/personal-website.
- Contact links: Edit the links in
index.htmlin the#contactsection (GitHub, LinkedIn, email). Remove or update the “Replace the links above…” note when done. - Copy: Change the hero tagline, about text, and focus areas to match your experience.
- Styling: Tweak colors and spacing in
styles.css(see:rootat the top).
Open index.html in a browser, or serve the folder locally:
# Python 3
python3 -m http.server 8000
# Then open http://localhost:8000Use and modify as you like for your own site.