Adding audio

Adding some audio from another (Free?) Site

For those of you using site like Neocities that require you to pay to upload audio, you can link to an existing audio file on another site. Finding an audio file that will play can be difficult. 

The following  code will play an audio file from cdn.Freesound.org.

<!DOCTYPE index.html>
<html lang="en">
<head>
  <title>Audio test</title>
</head>
  <body>
    <audio controls>
      <source src="https://cdn.freesound.org/previews/32/32490_29541-lq.mp3" type="audio/mp3">
      Your browser does not support the audio element.
    </audio>
  </body>
</html>