Search code examples
htmlaudioogg

Insert audio file in web page


I want to insert an audio file in my web page. I have the .mp3, but not the .ogg, so my audio won't play. What can I do to insert that file? I have the following code:

<audio controls autoplay>
        <source src="Viva-la-vida.mp3" type="audio/mpeg">
            Your browser does not support the audio element.
</audio>

Please correct me if I said something wrong. Thank you in advance!


Solution

  • The code you mentioned is working great with .mp3 file. You can do two things.

    1. Check the path you specified in the src attribute for the .mp3 file.
    2. Run your .html file in different browsers.