Answers for "insert sound to html"

1

how to add an audio in html

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

html sound

<audio controls>
  <source src="horse.ogg" type="audio/ogg">
  <source src="horse.mp3" type="audio/mpeg">
  Your browser does not support the audio tag.
</audio>
Posted by: Guest on March-14-2021

Browse Popular Code Answers by Language