Personal website for Ryan Jadhav
Static single-page site hosted on GitHub Pages at ryanjadhav.com. No build step, no framework — just HTML, CSS, and a small JS file.
Stack:
index.html— all page contentcss/reset.css— baseline style resetcss/main.css— all site styles, including light/dark theme viaprefers-color-schemejs/app.js— adds aloadedclass to<body>on DOMContentLoaded (used for fade-in transitions)CNAME— maps the custom domainryanjadhav.comto GitHub Pagesryanjadhav.pdf— Resume
No dependencies to install. Just open index.html in a browser:
open index.htmlOr serve it locally to avoid any path quirks:
npx serve .
# or
python3 -m http.serverPushing to master automatically deploys via GitHub Pages. The CNAME file ensures the site is served at ryanjadhav.com.