HTMLAudio

The <audio> tag is used to play sound. You can add controls so the user can play/pause.

<audio controls>
  <source src='sound.mp3' type='audio/mpeg'>
  Your browser does not support the audio tag.
</audio>