Skip to main content

Audio Player - HTML

The HTML <audio> element is used to play an audio file, here are three supported audio formats MP3, WAV, and OGG for Safari OGG is not supported for now.

DEMO

HTML

<audio controls>
  <source src="https://actions.google.com/sounds/v1/cartoon/crazy_dinner_bell.ogg" type="audio/ogg">
  <p>Your browser does not support HTML audio.</p>
</audio>

Muted

<audio controls muted>
  <source src="https://actions.google.com/sounds/v1/cartoon/crazy_dinner_bell.ogg" type="audio/ogg">
  <p>Your browser does not support HTML audio.</p>
</audio>

Comments