Answers for "how to render video in html"

1

html video

<video width="320" height="240" controls>
  <source src="your_video's_name.mp4" type="video/mp4">
  Error Message
</video>

<!-- i copied w3schools code lol-->
Posted by: Guest on May-13-2022
0

html 5 video

<video width="480" height="320" controls>
	// all browsers support mp4
  <source src="your_video_file_name.mp4" type="video/mp4">
   // safari doesn't support ogg
  <source src="your_video_file_name.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
Posted by: Guest on February-15-2022
3

html video play

var vid = document.getElementById("myVideo");

function playVid() {
    vid.play();
}

function pauseVid() {
    vid.pause();
}
Posted by: Guest on March-13-2021

Browse Popular Code Answers by Language