Personal portfolio / resume site for Joshua A. Logsdon — GIS Analyst III, City of San Diego.
Plain HTML + CSS + a tiny vanilla JS theme toggle. No build step, no dependencies.
Open index.html directly in a browser, or run a one-line static server:
python -m http.server 8000
# then visit http://localhost:8000This repo is named JoshALogs.github.io, which GitHub treats as a user site.
Once pushed to main, it auto-publishes to https://joshalogs.github.io.
First-time setup:
git add .
git commit -m "Initial portfolio site"
git branch -M main
git remote add origin https://github.com/JoshALogs/JoshALogs.github.io.git
git push -u origin mainThen on GitHub: Settings → Pages → Build and deployment
- Source: Deploy from a branch
- Branch: main / root (
/) - Save
The site typically goes live within 1–2 minutes of the first push.
When you purchase a domain:
- In the repo, Settings → Pages → Custom domain, enter
yourdomain.comand save. GitHub will commit aCNAMEfile to the repo automatically. - At your registrar, add DNS records pointing to GitHub Pages:
Arecords for the apex domain pointing to:185.199.108.153,185.199.109.153,185.199.110.153,185.199.111.153CNAMErecord forwwwpointing tojoshalogs.github.io
- Wait for DNS + HTTPS cert to provision (usually < 1 hour), then tick Enforce HTTPS.
- Content: all copy lives in
index.html. - Design tokens: colors, radii, spacing, and fonts are at the top of
styles.cssunder:root(dark theme) and:root[data-theme="light"]. - Photo: replace
assets/headshot.jpgwith a newer photo. Keep it square (1:1) and roughly 800×800 for best quality. If you change the filename, update the<img src>inindex.html. - Résumé download: drop a new copy at
assets/Logsdon_Joshua_Resume.pdf. If you change the filename, update the twohrefs inindex.htmlthat reference the file.
- Dark and light palettes both meet WCAG AA contrast for body and UI text.
- Full keyboard navigation with visible focus rings.
- Skip-to-content link for screen readers.
prefers-reduced-motionrespected (animations disabled).- Semantic landmarks (
header,main,nav,section,footer) and ARIA labels where helpful.
index.html # single-page site
styles.css # theme tokens, layout, components, print styles
script.js # theme toggle + back-to-top + footer year
assets/
headshot.jpg # profile photo (800x800 JPEG)
favicon.svg # favicon — concentric-circles "target" mark
Logsdon_Joshua_Resume.pdf