Audio Element with Alternative Sources




Audio Element with Alternative Sources examples

<!DOCTYPE html>
<html>
   <head>
      <title>HTML5 audio Element examples</title>
   </head>
   <body>
      <audio controls="controls">
         <source src="/examples/audio/birds.mp3" type="audio/mpeg">
         <source src="/examples/audio/birds.ogg" type="audio/ogg">
         Your browser does not support the HTML5 audio element.
      </audio>
   </body>
</html>

Output