Answers for "autoplay sound html"

1

html sound autoplay

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

html5 audio tag autoplay loop

<audio controls loop autoplay height="" width="">
      <source src="movie.mp3" type="audio/mp3" />
    </audio>
Posted by: Guest on October-18-2020

Browse Popular Code Answers by Language