html5 audio tag
The HTML <audio> element is used to play an audio file on a web page.
for example:
<audio controls>
<source src="audio1.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
The controls attribute adds audio controls, like play, pause, and volume.
The text between the <audio> and </audio> tags will only be displayed in browsers that do not support the <audio> element.
Supported formats: .mp3, .ogg, .wav