Comments on [ Music Player Tutorial F2U ] All Comments

hi! i'm having a slight problem. All four songs are the same except for the title and the actual link, but for some reason only one will play, I'm not sure what the problem is.

<!--SONG 1-->
    <p class="text-muted mb-1">Paint the Town Black by pragmaticNihilist</p>
    <!--AUDIO-->
    <audio controls style="width:280px;height:26px; opacity:0.5; border-radius:5em;">
      <source src="https://cdn.discordapp.com/attachments/837417309823041537/844962614173237258/HSVE_-_Paint_The_Town_Black.mp3" type="audio">
    </audio> <!--audio end-->
    <!--song 1 end-->
     
                   <!--SONG 2-->
    <p class="text-muted mb-1">Oversaturated by pragmaticNihilist</p>
    <!--AUDIO-->
    <audio controls style="width:280px;height:26px; opacity:0.5; border-radius:5em;"
      <source src="https://cdn.discordapp.com/attachments/837417309823041537/844963005318168637/HSVE_-_Oversaturated.mp3" type="audio">
    </audio> <!--audio end-->
    <!--song 2 end-->


                   <!--SONG 3-->
    <p class="text-muted mb-1">Ambroisia Fizz by dbnet18</p>
    <!--AUDIO-->
    <audio controls style="width:280px;height:26px; opacity:0.5; border-radius:5em;"
      <source src="https://cdn.discordapp.com/attachments/837417286595641444/844960257334837278/HSBGN_-_Ambroisia_Fizz.mp3" type="audio">
    </audio> <!--audio end-->
    <!--song 3 end-->
     
                   <!--SONG 4-->
    <p class="text-muted mb-1">Desire by Escape the Fate</p>
    <!--AUDIO-->
    <audio controls style="width:280px;height:26px; opacity:0.5; border-radius:5em;"
      <source src="https://cdn.discordapp.com/attachments/837417130445766656/844961233912201306/Escape_the_Fate_-_Desire.mp3" type="audio">
    </audio> <!--audio end-->
    <!--song 4 end-->

I'm honestly not exactly sure why but removing the ">" seem to fix it :'<

unknown.png

(removing all the " type="audio" " and keeping/adding the ">" also works so they're conflicting between each others I assume.)


So... This should work ?


<!--SONG 1-->
    <p class="text-muted mb-1">Paint the Town Black by pragmaticNihilist</p>
    <!--AUDIO-->
    <audio controls style="width:280px;height:26px; opacity:0.5; border-radius:5em;"
      <source src="https://cdn.discordapp.com/attachments/837417309823041537/844962614173237258/HSVE_-_Paint_The_Town_Black.mp3" type="audio">
    </audio> <!--audio end-->
    <!--song 1 end-->
     
                   <!--SONG 2-->
    <p class="text-muted mb-1">Oversaturated by pragmaticNihilist</p>
    <!--AUDIO-->
    <audio controls style="width:280px;height:26px; opacity:0.5; border-radius:5em;"
      <source src="https://cdn.discordapp.com/attachments/837417309823041537/844963005318168637/HSVE_-_Oversaturated.mp3" type="audio">
    </audio> <!--audio end-->
    <!--song 2 end-->


                   <!--SONG 3-->
    <p class="text-muted mb-1">Ambroisia Fizz by dbnet18</p>
    <!--AUDIO-->
    <audio controls style="width:280px;height:26px; opacity:0.5; border-radius:5em;"
      <source src="https://cdn.discordapp.com/attachments/837417286595641444/844960257334837278/HSBGN_-_Ambroisia_Fizz.mp3" type="audio">
    </audio> <!--audio end-->
    <!--song 3 end-->
     
                   <!--SONG 4-->
    <p class="text-muted mb-1">Desire by Escape the Fate</p>
    <!--AUDIO-->
    <audio controls style="width:280px;height:26px; opacity:0.5; border-radius:5em;"
      <source src="https://cdn.discordapp.com/attachments/837417130445766656/844961233912201306/Escape_the_Fate_-_Desire.mp3" type="audio">
    </audio> <!--audio end-->
    <!--song 4 end-->

it was still broken for me, but adding the > back fixed it even without removing the type=audio. wack

Strange but at least it work now yay! :'>