document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!-- Replace the src with your audio file and make sure the type includes the file format after the backslash -->
  2. <audio controls preload="auto">
  3.   <source src="YOUR-FILE-SOURCE-URL" type="audio/FILETYPE">
  4. </audio>
  5.  
  6.  
  7. <!-- EXAMPLE -->
  8. <audio controls preload="auto">
  9.   <source src="http://yourdomain.com/wp-content/uploads/2015/01/My-Awesome-Audio-File.mp3" type="audio/mp3">
  10. </audio>
');