HTML muted Attribute

❮ HTML Attributes

Example

<audio controls muted>
	<source src="audio/demo.mp3" type="audio/mpeg">
	<source src="audio/demo.ogg" type="audio/ogg">
	Your browser does not support the audio tag.
</audio>

Meaning

The muted attribute that specifies the default setting of the audio contained in the video or audio elements.




Standard Syntax

HTML: <element muted>
XHTML: <element muted="muted">



Browser Support




Status




Applies to:

The muted attribute can be used on the following element:

Element Attribute
<audio> muted
<video> muted






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.



More Examples

Example

<video width="340" height="260" controls muted>
	<source src="demo/video.mp4" type="video/mp4">
	<source src="demo/video.webm" type="video/webm">
	Your browser does not support the video tag.
</video>
❮ HTML Attributes