HTML <audio> muted Attribute
Example
<audio controls muted>
<source src="cat.mp3" type="audio/mpeg">
<source src="cat.ogg" type="audio/ogg">
Your browser does not support the audio tag.
</audio>
Meaning
The muted is boolean attribute is set to the URL of the audio to show.
Standard Syntax
<audio muted>
<source src="Source(URL)" type="mediaType">
Your browser does not support the audio tag.
</audio>
Advertisement
Attribute Values
| Value | Description |
|---|---|
| muted | This is a boolean attribute, the presence of a boolean attribute on an element represents the true value, and the absence of the attribute represents the false value. |