Author: Catherine Matu
Course: CodeKenya Software Engineering Program
Assignment Objective: Build a complete personal portfolio using semantic HTML, modern CSS techniques, and JavaScript.
This project is a frontend development assignment for the CodeKenya Software Engineering Curriculum.
The objective is to showcase HTML5, CSS3, and responsive design skills by building a developer portfolio that includes:
- Navigation menu
- Project showcase section
- Contact form integration
- Visually accessible styling with CSS variables
The portfolio was built from scratch using pure HTML, CSS, and minimal JavaScript—highlighting fundamental frontend development skills.
MY-PORTFOLIO
│
├── .vscode/
│
├── assets/
│ └── img/
│ ├── lang/
│ │ ├── css3.png
│ │ ├── html.png
│ │ └── js.png
│ │
│ └── projects/
│ ├── portfolio.png
│ ├── contact.png
│ └── aboutme.png
│
├── index.html
├── index-nojs.html
├── index-nostyle-nojs.html
│
├── menu.js
├── projects.js
│
└── styles.css
- Semantic HTML5 layout
- Sticky navigation bar with smooth scrolling
- SVG hamburger menu icon for mobile navigation
- Responsive design for all screen sizes
- Custom CSS variables for theming and easy updates
- Contact form integration via Formspree
- Accessible and clean visual hierarchy
-
Clone the repository:
git clone https://github.com/Cathy-matu/curriculum-assignment-submission.git cd my-portfolio -
Open in your browser:
-Double-click index.html or index-nojs.html
-OR open in VS Code and use the Live Server extension
The contact section uses Formspree for backend-less form submissions:
<form action="https://formspree.io/f/[your_form_id]" method="POST">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message"></textarea>
<button type="submit">Send</button>
</form>Replace
[your_form_id]with your actual Formspree form endpoint.
Catherine Matu
- Frontend Developer | Software Developer Trainee
- Nairobi, Kenya
- This project is licensed under the MIT License
- Feel free to reuse and adapt for personal or educational purposes
- Special thanks to CodeKenya and the curriculum team for this hands-on assignment


