A community-driven initiative built & maintained by the community for the community during Hacktoberfest

| This repository is an initiative that aims to help beginners kickstart their open-source journey and successfully submit their first pull request (PR) for Hacktoberfest. It is also a safe space for everyone regardless of their skill level and we welcome participants from all around the world with different experiences, unique perspectives, and great ideas. |
Need info?
Check the website | or Create an issue | or Feature request? | Support us on GitHub sponsors
We believe we can build a welcoming and inclusive community if we all:
This project exists thanks to all the people who contribute! ❤️ ?
Shoutout to our contributors ?
Before making any contributions, please take a look at our Community Guidelines and take a look at the existing Issues or create a new issue!
Wanna make a contribution but don't know how? Please follow the steps below.
Install Visual Studio Code and create a Git (not GitHub) account
git --version in a directory of your choice - you should see the version of Git that you downloaded. If you see an error, close and reopen VS Code and try againgit config --global user.name "<your-first-name> <your-last-name>" - replace the <placeholders> with the real valuesgit config --global user.email "<your-email-here>"- replace the <placeholder> with the real values (your email address should match the one with which you signed up for your GitHub account)Fork this repository. This will create a copy of this repo in your GitHub account:
https://github.com/<YOUR GITHUB ACCOUNT>/main-websiteClone the repository
Make changes
Commit and push your changes to your fork
git add . (yes, there is a space ( ) between add and the .) - this adds all changes to staging areagit commit -m "YOUR COMMIT MESSAGE" - this will commit your changes with the messagesgit push to push the changes to your remote forkMake a Pull Request