How To Embed Audio In Html

how to embed audio in html
<audio controls>
<source src="name.mp3" type="audio/mp3" />
</audio>
how to add audio in html
<audio controls>

<source src="flag.ogg" type="audio/ogg">

<source src="flag.mp3" type="audio/mpeg">

</audio>

 

 

Leave a Comment