We are creating an audio element with the help of audio tag.
×
Audio Tag with Controls
<!DOCTYPE html>
<html>
<body>
<audio controls>
<source src="E:\HTML\HTMLMusic\Jai-Jai-Narayan.ogg" type="audio/ogg">
<source src="E:\HTML\HTMLMusic\Jai-Jai-Narayan.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<!-- This is a comment -->
<p>This is a paragraph.</p>
<!-- Comments are not displayed in the browser -->
</body>
</html>