-
Add the image file to the
/imgfolder. -
Add the following
<li>element inindex.html, replacing the placeholders:
<!-- transparent background -->
<li class="cd-box">
<a href="img/NAME_OF_THE_IMAGE.png" download>
<img
style="height: 200px; width: auto; margin: auto;"
src="img/NAME_OF_THE_IMAGE.png"
alt="Logo version"
/>
</a>
NAME_TO_BE_SHOWN_ON_THE_WEB
</li>
<!-- black background -->
<li style="background-color: black; color: white;" class="cd-box">
<a href="img/NAME_OF_THE_IMAGE.png" download>
<img
style="height: 200px; width: auto; margin: auto;"
src="img/NAME_OF_THE_IMAGE.png"
alt="Logo version"
/>
</a>
NAME_TO_BE_SHOWN_ON_THE_WEB
</li>Run the following commands to push your changes:
git add .
git commit -m "Add new logo"
git push