Answers for "html5 video controls"

1

html video controls

//The controls attribute is a boolean attribute.
<video controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
</video>
Posted by: Guest on March-13-2021
0

html video multiple elements

<video controls>
    <source src="/videos/myvideo.mp4" type="video/mp4">
    <source src="/videos/myvideo.webm" type="video/webm">
    Your browser does not support embedded videos.
</video>
Posted by: Guest on September-23-2020

Browse Popular Code Answers by Language