This is a basic practice website for Cohort 3.
The site is intentionally imperfect so students can practice:
- Reading code
- Finding bugs
- Fixing UI and JavaScript issues
- Writing clean commits and pull requests
- index.html
- style.css
- script.js
- Clone the repository to your computer.
git clone https://github.com/Ayokanmi-Adejola/Frontend-Development-Cohort-3.git
cd Frontend-Development-Cohort-3
- Create a new branch for your fixes.
git checkout -b your-name-fixes
- Make your changes and commit in small logical steps.
git add -A
git commit -m "Describe your change"
- Push your branch to GitHub.
git push -u origin your-name-fixes
- Open a pull request with a clear summary.
- Request a review from a teammate or instructor.