A simple website with HTML, CSS and Bootstrap.
A simple website built with HTML, CSS and Bootstrap.
This repository is beginner-friendly and perfect for contributors who want to practice web basics, learn GitHub, and make their first open-source pull request.
index.htmlβ the main pagecss/β custom stylesjs/β optional scriptsassets/β images, icons, fontsbootstrap/or CDN usage β Bootstrap for responsive layout
This README was created to help contributors add pages, components, or style improvements.
- Fork this repository.
- Create a new branch for your change: git checkout -b add-your-name-feature
- Make changes β add a new HTML/CSS/Bootstrap file or update an existing file.
- One file per PR is recommended.
- Add a short comment at the top of your file describing what it does.
- Commit your changes: git add . git commit -m "Add: [short description of your change]"
- Push to your fork and open a Pull Request to this repo.
- In the PR description, explain what you added and why. That helps us review faster.
- Simple pages:
about.html,contact.html,portfolio.html - Components: navigation bar, footer, hero section, cards, forms
- Styling: responsive improvements, dark mode, animations
- Accessibility: add alt text, improve keyboard navigation
- Documentation: improve this README or add a CONTRIBUTING.md
This repo is participating in Hacktoberfest β pull requests that follow the rules will be:
- Merged or labeled
hacktoberfest-acceptedonce approved.
Rules to be valid:
- Single, meaningful file per PR (no spam or trivial empty changes)
- Working code β make sure your HTML renders and CSS/JS doesnβt break the site
- Use Bootstrap classes for layout where possible.
- Keep HTML semantic (
<header>,<main>,<footer>, etc.). - Add comments at the top of new files:
<!--
File: about.html
Author: Your Name
Description: About page with team info
-->