A clean, modern, and fully responsive personal portfolio website showcasing my projects, skills, and experience as a Computer Science student and Software Developer.
- Responsive Design - Fully optimized for desktop, tablet, and mobile devices
- Modern UI/UX - Clean, minimalist gray theme with smooth transitions
- About Section - Personal introduction and background
- Skills Showcase - Organized display of technical skills and coursework
- Project Portfolio - Detailed cards for each major project with tech stack tags
- Experience Timeline - Professional experience and achievements
- Contact Information - Easy ways to get in touch via email, GitHub, and LinkedIn
- Smooth Navigation - Sticky header with smooth scrolling to sections
The website features a Minimalist Gray color scheme:
- Clean white backgrounds with subtle shadows
- Professional charcoal and slate gray accents
- Elegant borders and hover effects
- Easy-to-read typography with proper contrast
- Clone this repository:
git clone https://github.com/NeonWest/portfolio-website.git
cd portfolio-website- Open
index.htmlin your browser
That's it! No build process or dependencies required.
If you want to test on a local server:
# Using Python
python -m http.server 8000
# Using Node.js
npx http-server
# Using PHP
php -S localhost:8000Then visit http://localhost:8000
portfolio-website/
β
βββ index.html # Main HTML file
βββ styles.css # All styling and responsive design
βββ README.md # This file
Edit index.html and update:
- Name and title in the hero section
- About me description
- Skills lists
- Project details
- Contact information
- Social media links
Edit styles.css and modify the color variables:
- Primary text:
#111827 - Secondary text:
#4b5563 - Accent color:
#374151 - Background:
#f9fafb - Card background:
#ffffff
In index.html, add a new project card in the projects section:
<div class="project-card">
<h3>Project Name</h3>
<p>Project description goes here...</p>
<span class="project-tag">Tech</span>
<span class="project-tag">Stack</span>
</div>The website is fully responsive with breakpoints at:
- Desktop: 1200px+ (full layout)
- Tablet: 768px - 1199px (adjusted spacing)
- Mobile: < 768px (single column, stacked layout)
- Small Mobile: < 480px (optimized for small screens)