If you want to contribute to this project then head over to issues page and look out for existing issues or open your new issues and ask for assigning it to you.
1). Fork this repository
2). Clone the forked repository on your local environment
git clone https://github.com/<your_username>/Ace-The-FrontEnd.git
3). Add remote to the original repository
git remote add upstream https://github.com/surajm-333/Ace-The-FrontEnd.git
4). Make the required changes
5). Take a pull from upstream repository (Important step!)
git pull upstream main
6). Stage your changes
git add -A
7). Commit your changes
git commit -m "<appropriate_msg>"
8). Push the changes to your forked repo
git push -u origin <branch_name>
9). Click on Commpare and pull request
to create a pull request
NOTE:- Ensure that your branch is up to date with the upstream repository
10). Add description of changes made by you and click on Create Pull Request
That's it! Congratulations you have made your pull request.