Hacktoberfest, in its 10th year, is a month-long celebration of open source software run by DigitalOcean. It is a great opportunity for everyone, from seasoned developers to students and code newbies, from technical writers to UX designers, to contribute to open source communities and develop your skills, with the perks of winning limited edition items. You can do this in a variety of ways:
There is no doubt that most of our childhood was spent watching anime. Haikyuu is one of my favorites. With Hacktoberfest 2022 coming up and being one of the people who would participate for the very first time, I decided to create this repository that's actually a very basic web-page that let the user view and add their favourite characters.
You can find all the characters on https://haikyuu.fandom.com/wiki/Characters
There is always something to contribute to a project whether you are a novice or a veteran. In this project, you can add your favourite character as a card to the website! Or maybe you didn't like the line that you are reading right now and want to change that.Sure! Why not?
To contribute in Hacktoberfest2022 , checkout the given link https://hacktoberfest.com/
And That's It! Follow these steps to make your very first Pull request.
Not everyone is aware of every tool present in the world no matter how easy or complex it is. It's also not necessary to know each and every tool out there. Use the code below to add the your own card!
Code -
<!-- [character name] card start-->
<div class="card mb-3 card-bg my-4" style="max-width: 100%;">
<div class="row no-gutters">
<div class="col-md-4">
<img src=[image-link] alt=[name of character] height="390px" width="300px">
</div>
<div class="col-md-8">
<div class="card-body">
<h2 class="card-title">[name of character]</h2>
<p class="card-text">[Main description about character]</p>
<p>[some more description about character]</p>
</div>
</div>
</div>
</div>
<!--[character name] card end-->
Copy this code and paste it in the index.html file to make your changes. Try and test it on your own system and then create a Pull request. You can adjust height of image of character so that it will fit in card.
Congratulations! You just made your first pull request and if it gets merged, you can view it using the Link provided above!