I'm trying to get my website to play multiple mp3/songs, but it keeps playing soundtrack1, but I want it to play all 3 songs at the same time.
This is what I currently have:
<audio loop autoplay controls>
<source src="soundtrack1.mp3" type="audio/mpeg" loop="true">
<source src="soundtrack2.mp3" type="audio/mpeg" loop="true">
<source src="soundtrack3.mp3" type="audio/mpeg" loop="true">
Your browser does not support the audio element.
</audio>