Adding audio to a webpage

by danielkwood

HTML

<html>
  <head>
   <title>Adding audio to a webpage</title>
  </head>
  <body>
     <audio controls autoplay loop>
       <source src="your_audio_file.mp3" type="audio/mpeg"/>
       Your browser does not support the HTML5 audio tag. Consider updating to a newer browser.
     </audio>
   </body>
</html>