This repository contains the source code for my personal portfolio website, showcasing my projects, skills, and professional experience.
- Responsive design
- Project showcase
- Skills section
- Contact information
- Professional experience
- HTML5
- CSS3
- JavaScript
- GitHub Pages
- Font Awesome Icons
- Clone the repository:
git clone https://github.com/nayyarcoder/nayyarcoder.github.io.git
- Navigate to the project directory:
cd nayyarcoder.github.io - Open
index.htmlin your browser to view the site locally
├── .github/
│ └── workflows/
│ └── deploy.yml # GitHub Actions deployment workflow
├── assets/
│ ├── css/
│ │ └── main.css # Main stylesheet
│ └── js/
│ └── main.js # Main JavaScript file
├── .gitignore
├── .nojekyll # Prevents GitHub Pages from using Jekyll
├── index.html # Main HTML file
└── README.md
The website is automatically deployed through GitHub Pages when changes are pushed to the master branch using GitHub Actions.
MIT License - Feel free to use this project as a template for your own portfolio.
Simply open index.html in your web browser to view the site locally. No build process or dependencies are required.
For a better development experience with live reload, you can use a simple HTTP server:
# Using Python 3
python -m http.server 8000
# Using Node.js (if you have http-server installed)
npx http-server
# Then visit http://localhost:8000 in your browser