- Open the index.html file
- You will see a snippet of code below.
- Just add that code with YOUR NAME and YOUR GITHUB PROFILE link to make a simple contribution.
<div class="card">
<div class="img-sec">
<img src="https://cdn.pixabay.com/photo/2017/01/31/21/23/avatar-2027365_1280.png" height="150px"
width="150px">
</div>
<div class="info">
<div class="label">YOUR NAME</div>
<div class="desc">Contributor</div>
<div class="github">
<a class="" href="YOUR NAME" target="_blank">
<i class="fa-brands fa-github fa-2xl hero"></i>
</a>
</div>
</div>
</div>- Fork this repository to your GitHub account.
- Clone the forked repository to your local machine:
git clone https://github.com/jarvis-ghrce/Innovate-with-Open-Soucre
- Create a new branch for your contribution:
git checkout -b contributor/your-name
- Make your changes in the Snippet of Code.
- Commit your changes and push them to your forked repository:
git add . git commit -m "Add your meaningful commit message here" git push origin contributor/your-name
- Create a Pull Request (PR) from your forked repository to this main repository.
- Your PR will be reviewed and merged if everything is in order.
- Ensure your code follows the project's coding standards and conventions.
- Make sure to document your code and add comments where necessary.
- Test your changes to ensure they work as expected.