Embedding Audio

The <audio> tag allows you to embed sound files like MP3, WAV, or Ogg.

  • Attributes: controls, autoplay, loop, muted
<audio controls>
  <source src="sound.mp3" type="audio/mp3">
  Your browser does not support the audio element.
</audio>
← PrevNext →