Search notes:

HTML element: audio

Render an audio (sound) file.
<audio controls="controls">
  <source
    type="audio/mpeg"
    src ="https://foo.bar.baz/some/file.mp3"
  >
  <a href="https://foo.bar.baz/some/file.mp3">https://foo.bar.baz/some/file.mp3</a>
</audio>

See also

HTMLMediaElement
Other HTML elements such as <source> or <video>

Index