I wanted to share the GitHub repository for the Everyday Gita Challenge - GitHub Repo.
Click on the "Fork" button at the top right of the repo page to create your own copy.
On your machine, clone your forked repository using the command:
git clone https://github.com/suresh-srinivas/everyday-gita-challenge-chapter12.git
Before making any changes, create a new branch to work on. Use the command:
git checkout -b your-branch-name
Implement your changes in the relevant files.
Add a new <div class="participant">
section for each new participant. Use the following structure for each new participant:
<div class="participant">
<img src="ParticipantImage.jpeg" alt="Participant Name">
<div>
<strong>Participant Name</strong>
<audio controls>
<source src="ParticipantAudioFile.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</div>
Replace ParticipantImage.jpeg
with the actual image file name, Participant Name
with the participant's name, and ParticipantAudioFile.mp3
with the audio file name.
Once your changes are ready, commit them with a descriptive message:
git add .
git commit -m "Added new recordings for [Participant Names]"
Push your changes to your forked repository using:
git push origin your-branch-name
Go to the original repository on GitHub and click on "Compare & pull request." Select your branch and create a pull request with a clear description of what you've done. """