0
How to put multiple music inside an audio tag?
Inside audio player many of music that i mean
1 Answer
0
if i'm doing this right , you can use this for three (or more) mp3 files :
<audio controls>
<source src="a.mp3" type="audio/mpeg">
<source src="b.mp3" type="audio/mpeg">
<source src="c.mp3" type="audio/mpeg">
</audio>