A lightweight, static personal portfolio site built with HTML, CSS, and vanilla JavaScript.
This repository contains a single-page portfolio website with:
- Responsive layout using Tailwind CSS (loaded from CDN)
- Dark mode support
- A terminal-style command interface in the header
- Portfolio sections (about, projects, stack, experience, contact)
- Static asset support for favicons, profile image, and manifest
- HTML5 (
index.html) - CSS3 (
index.css) - Vanilla JavaScript (
index.js) - Tailwind CSS CDN
- Lucide icons CDN
.
├── index.html # Main page markup
├── index.css # Custom styles
├── index.js # Terminal command behavior + interactions
├── me.jpeg # Profile image
├── site.webmanifest # PWA manifest metadata
├── favicon* / apple-* / android-* icons
└── README.md
Because this is a static site, you can run it with any simple file server.
python3 -m http.server 8000Then open: http://localhost:8000
npx serve .You can deploy this site to any static hosting provider, for example:
- GitHub Pages
- Netlify
- Vercel (static output)
- Cloudflare Pages
- AWS S3 + CloudFront
- The resume terminal command currently points to
/resume.pdf, so include that file at the project root if you want downloads to work. - External dependencies (Tailwind and Lucide) are loaded via CDN in
index.html.
No license is currently specified in this repository.