Horje

Example of HTML Audio

To play an audio file in HTML, use the <audio> element:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<audio controls>
  <source src="https://www.w3schools.com/html/horse.ogg" type="audio/ogg">
  <source src="https://www.w3schools.com/html/horse.ogg" type="audio/mpeg">
Your browser does not support the audio element.
</audio>

</body>
</html>

Output should be:

Example of HTML Audio




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