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-->
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-->
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>
html video play
var vid = document.getElementById("myVideo");
function playVid() {
vid.play();
}
function pauseVid() {
vid.pause();
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us