autoplay video with sound html5 code example
Example 1: html video autoplay
Syntax:
<video autoplay>
Example:
<video controls autoplay>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
</video>
Example 2: html5 audio tag autoplay loop
<audio controls loop autoplay height="" width="">
<source src="movie.mp3" type="audio/mp3" />
</audio>
Example 3: 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>