Horje

How to create HTML <audio> Tag

Play a sound file:
index.html
Example: HTML
<audio controls>
  <source src="https://www.w3schools.com/tags/horse.ogg" type="audio/ogg">
  <source src="https://www.w3schools.com/tags/horse.ogg" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>

Output should be:

How to create HTML <audio> Tag




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin