A dark, editorial-style personal portfolio for a web designer & developer. Built with pure HTML, CSS, and JavaScript. No frameworks, no installs — just open and impress.
- 🎨 Modern Editorial Design — Dark aesthetic with bold accent colors and anime-inspired visuals
- 📱 Fully Responsive — Adapts cleanly from desktop down to mobile
- ✨ Scroll Reveal Animations — Every section fades and slides in via
IntersectionObserverat 30% visibility - 📊 Animated Skill Bars — Progress bars animate into view when scrolled to
- 🖱️ Custom Scrollbar — Styled scrollbar for a polished, consistent look
- 🧭 Smooth Navigation — Anchor links with smooth scroll behavior
- 📂 Well-Structured Code — Clean, maintainable separation of HTML, CSS, and JavaScript
1. Clone the repository
git clone https://github.com/Zeddy-Forreal/zanark-portfolio-website.git
cd zanark-portfolio-website2. Open in browser
No build step, no installs. Just open index.html directly:
# macOS
open index.html
# Windows
start index.html
# Linux
xdg-open index.html3. Make it yours
Swap out the name, bio text, skill values, and images. Everything is clearly labeled in the HTML.
Try it here 👇 https://zeddy-forreal.github.io/zanark-portfolio-website
zanark-portfolio-website/
├── index.html App markup and structure
├── style/
│ └── main.css All styles — layout, animations, responsive
├── javascript/
│ └── main.js Scroll reveal and skill bar animation
└── media/
├── pfp.png Profile image
└── wallpaper.png Hero background image
All colors are CSS custom properties at the top of main.css. Edit these to retheme the whole site:
:root {
--bg-dark: #070a13;
--bg-card: #111827;
--bg-card-hover: #1f2937;
--accent: #00ff88;
--accent-glow: rgba(0, 255, 136, 0.3);
--text-main: #f8fafc;
--text-muted: #94a3b8;
--border-color: rgba(255, 255, 255, 0.08);
--font-heading: font1, sans-serif;
--font-body: font2, sans-serif;
--transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}Made with 🖤 by Zeddy-Forreal