The audio Element part 2

Audio on the Web



The <audio> element creates an audio player inside the browser.
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
<source src="audio.ogg" type="audio/ogg">
Audio element not supported by your browser.
</audio>
Try It Yourself

Result:
The text between the <audio> and </audio> tags will display in browsers that do not support the <audio> element

Comments