added some comments for Cole

This commit is contained in:
Nye Evans 2022-01-09 21:24:48 +00:00
parent e657f48d3d
commit 874e1d9b39

View file

@ -15,6 +15,7 @@
</div>
<div id = "audioContainer">
<!--------------------------------------------------------------------------------------------->
<div class = "songTitle">two trucks having sex</div>
<div class = "audioPlayer">
<audio class = "audioElement" src = "../audio/twoTrucks.mp3" preload=”metadata”></audio>
@ -30,7 +31,7 @@
0:00
</span>
</div>
<!--------------------------------------------------------------------------------------------->
<div class = "songTitle">goodbye horses</div>
<div class = "audioPlayer">
<audio class = "audioElement" src = "../audio/goodbyeHorses.mp3" preload=”metadata”></audio>
@ -46,7 +47,7 @@
0:00
</span>
</div>
<!--------------------------------------------------------------------------------------------->
<div class = "songTitle">rats birthday mixtape</div>
<div class = "audioPlayer">
<audio class = "audioElement" src = "../audio/ratsBirthdayMixtape.mp3" preload=”metadata”></audio>
@ -62,6 +63,36 @@
0:00
</span>
</div>
<!--------------------------------------------------------------------------------------------->
<!--
ok so to add a song, copy this and replace the things written in fullcaps
paste it underneath above here underneath the long line of dashes
<div class = "songTitle">SONG TITLE</div>
<div class = "audioPlayer">
<audio class = "audioElement" src = "../audio/SONG FILE NAME.mp3" preload=”metadata”></audio>
<div class = "playButtonContainer">
<button class = "playButton"><img src = "../images/play.png"></button>
</div>
<input type="range" class="audioSlider" max="100" value="0">
<span class = "timeContainer">
0:00
</span>
<span class = "timeSeparator">/</span>
<span class = "durationContainer">
0:00
</span>
</div>
also worth copy and pasting the green line underneath just to make it easier for yourself next time you need to add a song
also, anything in green is a comment, you make comments using the symbols at the start and end of this bit
-->
</div>
</body>
</HTML>