Personal portfolio for Muhammad Owais Ahmed — Senior Software Engineer. Hand-built, dependency-free static site (semantic HTML + modern CSS + vanilla JS), deployed via GitHub Pages from the repository root.
index.html # single-page site (all sections)
favicon.svg / favicon.ico # icons
site.webmanifest # PWA manifest
robots.txt / sitemap.xml # SEO
assets/
css/style.css # design system + all styles (dark & light themes)
js/main.js # theme toggle, nav, reveal, counters, form, typewriter
img/ # profilepic.jpg, og-image.png, projects/*.jpg
muhammad-owais-ahmed-resume.pdf
No build step. Serve the folder with any static server:
python3 -m http.server 8123
# then open http://localhost:8123This repo is a user page (codewithowais.github.io) served from the root of the
default branch. Deploying is just pushing to that branch:
git add -A
git commit -m "Rebuild portfolio: modern responsive redesign"
git push origin gh-pages # this repo serves from the gh-pages branchGitHub Pages publishes automatically within ~1 minute. Confirm Settings → Pages is set to "Deploy from branch" → root.
The site code (HTML/CSS/JS) is open source under the MIT License — clone it, learn from it, or use it as a template for your own portfolio.
Please replace the personal content when you reuse it: the profile photo,
résumé, name, bio, project descriptions, and the codewithowais brand/links are
not covered by the MIT grant. Bundled fonts (Bricolage Grotesque, Hanken Grotesk,
JetBrains Mono) are under the SIL Open Font License 1.1.
# Use it as a starting point
git clone https://github.com/codewithowais/codewithowais.github.io.git my-portfolio- Colors / type: CSS custom properties at the top of
assets/css/style.css. - Theme: dark-first with a light toggle; initial theme is set before paint by an
inline script in
<head>(no flash) and persisted tolocalStorage. - Contact form: works out-of-the-box via a
mailto:compose. To collect messages without opening an email client, setFORMSPREE_ENDPOINTinassets/js/main.js. - Content to finish: see
CONTENT-TODO.md.