All TalkersCode Topics

Follow TalkersCode On Social 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 ❯