Horje

Full Example of Audio Player Mute After Auto Playing

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

<audio controls autoplay muted>
  <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:

Full Example of Audio Player Mute After Auto Playing




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