To play an audio file using HTML, utilize the <audio> element:
<audio controls> <source src=”horse.ogg” type=”audio/ogg”> <source src=”horse.mp3″ type=”audio/mpeg”> Your browser does not support the audio element. </audio> |
The controls attribute adds audio controls such as play, pause, and volume.
The <source> element allows specification of alternative audio files that browsers can choose from, with the first recognized format being used.
Text between the <audio> and </audio> tags appears only in browsers that do not support the <audio> element.