HTML | <audio> controls Attribute
The HTML <audio> controls attribute is used to specify the control to play audio. It is the Boolean value. This attribute is new in HTML5.
The audio control attribute contains the following property:
- Play
- Pause
- Seeking
- Volume
Syntax:
<audio controls>
Example:
<!DOCTYPE html> < html > < head > < title > HTML Audio controls Attribute </ title > </ head > < body style = "text-align: center" > < h1 style = "color: green" > GeeksforGeeks </ h1 > < h2 style = "font-family: Impact" > HTML Audio controls Attribute </ h2 > < br > < audio id = "Test_Audio" controls> < source src = type = "audio/ogg" > < source src = type = "audio/mpeg" > </ audio > </ body > </ html > |
chevron_right
filter_none
Output:
Supported Browsers: The browser supported by HTML <audio> controls attribute are listed below:
- Google Chrome 4.0
- Internet Explorer 9.0
- Firefox 3.5
- Safari 4.0
- Opera 10.5