Select Chapter ❯
HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Main Tags
- HTML All Tags
- HTML Attributes
- HTML Formating
- HTML Comments
- HTML Links
- HTML Images
- HTML Tables
- HTML List
- HTML Iframes
- HTML Style
- HTML Javascript
- HTML Forms
- HTML Elements
HTML5 Tutorial
HTML Media
HTML Audio
HTML Audio, to add audio is only possible with HTML5 before this we can only add audios with the help of some flash plugin.
Browser Support
Internet Explorer 9+, Firefox, Opera, Chrome, and Safari support the <audio> element.
Example of Audio
<audio controls> <source src="demo.mp3" type="audio/mp3"> Your browser does not support the audio tag </audio>
Code Explanation
- controlsattribute add extra controls like play, pause, volume to the audio.
- Text between the audio tags will only display in browsers that do not support the <audio> element.
❮ PreviousNext ❯