Link to home
Start Free TrialLog in
Avatar of Whing Dela Cruz
Whing Dela CruzFlag for Anguilla

asked on

How make an audio player that would accept multi songs using HTML5?

Hi experts, I have 3 songs and I want to continuously play this songs in in the audio player. Here's the code;

<section>
    <h1>My music</h1>
 <audio
        src="songs\My love will see.mp3"
        src="songs\till death do us part.mp3"
        src="songs\Kahit maputi.mp3"
        controls
        loop>
        Your browser does not support the audio element.
</audio>
</section>
ASKER CERTIFIED SOLUTION
Avatar of Kimputer
Kimputer

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Whing Dela Cruz

ASKER

Hi Kimputer, Thanks a lot!