Answers for "how to put audio file in html"

4

how to add an audio in html

<audio controls>
  <source src="name.mp3" type="audio/mp3" />
</audio>
Posted by: Guest on May-06-2020
5

audio in html

<audio controls>
<source src="sound.ogg" type="audio/ogg">
<source src="sound.mp3" type="audio/mpeg">
No audio support.
</audio>
Posted by: Guest on August-05-2021

Browse Popular Code Answers by Language