Horje

Full Example of HTML Audio Autoplay

Follow the Example
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<audio controls autoplay>
  <source src="horse.ogg" type="audio/ogg">
  <source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>

</body>
</html>

Output should be:

Full Example of HTML Audio Autoplay




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