Making a url for an mp3

Hello i need help making a url for an mp3 i just got can anyone help?

1 Like

Follow this code :

<audio>
   <source src="./music.mp3" type="audio/mp3" />
   <source src="./music.ogg" type="audio/ogg">
   <source src="./music.mp3" type="audio/mpeg">
</audio>

You forgot to correctly format the code in your post, so I’ve done it for you. :slight_smile:

1 Like

Yeah !! I see it , but it’s working .

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.