A responsive personal portfolio website with sections for an introduction, about, projects, skills, education, and contact.
Live site: https://amokhalad.github.io
- HTML
- Tailwind CSS (compiled to
src/output.css) alongside a hand-writtensrc/style.css - JavaScript with jQuery, plus Typed.js, Waypoints, and Owl Carousel for the typing effect, scroll triggers, and project carousel
The site source lives in the src/ directory (index.html, style.css, script.js, images, and the generated output.css).
Open src/index.html directly in a browser, or serve it locally:
cd src
python3 -m http.serverThen visit http://localhost:8000.
To rebuild the Tailwind styles while editing, install dependencies and run the watch script from the repo root:
npm install
npm run devThis watches src/style.css and regenerates src/output.css.