This is a simple static portfolio site built with HTML and CSS.
- Personal portfolio webpage located in the
Projectfolder. - Single-page layout with sections: About, Experience, Projects, Contact.
- Styles in
index.cssand images in theimage/folder.
Open index.html in your browser, or serve the folder with a small static server:
# from the Project folder
python3 -m http.server 8000
# then open http://localhost:8000/index.htmlOr, if you prefer another port (example used in screenshots):
python3 -m http.server 3002
# open http://127.0.0.1:3002/index.html- Added a "Programming Languages" / "Computer Fundamentals" block inside the
#experiencesection. - CSS adjusted so all
.experience-boxcards share the same height and align in a 2x2 grid on desktop.
index.html— main pageindex.css— stylesimage/— profile and project images
- To make the site production-ready, consider minifying CSS and organizing assets under
assets/. - If hosting on GitHub Pages, ensure links are relative (they already are) and publish the repository branch.
This portfolio is deployed using GitHub Pages.
🔗 Live URL: https://pcmhacker-piro.github.io/prakash-portfolio/
Created automatically by assistant on 23 Dec 2025.