xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>Embedded Video Example</title>
</head>
<body>
<h1>Embedded Video Example</h1>
<video width="640" height="360" controls>
<source src="path_to_video/video.mp4" type="video/mp4">
<source src="path_to_video/video.webm" type="video/webm">
<p>Your browser does not support the video tag.</p>
</video>
</body>
</html>
xxxxxxxxxx
<video width="320" height="240" controls>
<source src="your_video's_name.mp4" type="video/mp4">
Error Message
</video>
xxxxxxxxxx
<video width="640" height="480" controls>
<source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
xxxxxxxxxx
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
</video>
Video in html
xxxxxxxxxx
<video src="coding.mp4" controls>Video not supported</video>
Some attributes that can alter a video playback include:
controls: When added in, a play/pause button will be added onto the video along with volume control and a fullscreen option.
autoplay: The attribute which results in a video automatically playing as soon as the page is loaded.
loop: This attribute results in the video continuously playing on repeat.
note/the text video not supported will only be shown if the video can't be loaded
note/use the attributes (autoplay and loop ) instead of (controls)
xxxxxxxxxx
<object data="../Video/VTS_01_1.vob" height="200" width="200"></object>
xxxxxxxxxx
<video>
<source src="path_to_your_video_file.mp4" type="video/mp4">
</video>
xxxxxxxxxx
<video controls autoplay muted loop width="600" ><source src="video.mp4"> <!--controls/autoplay ect are optional-->
xxxxxxxxxx
<iframe src="https://player.vimeo.com/video/605289840?h=b41c35336e&autoplay=1&loop=1" width="640" height="1138" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>
<p><a href="https://vimeo.com/605289840">video-1630915308.mp4</a> from <a href="https://vimeo.com/user151004688">nguyen phu tuan K14</a> on <a href="https://vimeo.com">Vimeo</a>.</p>
xxxxxxxxxx
<iframe src="https://player.vimeo.com/video/605289840?h=b41c35336e&autoplay=1&loop=1" width="640" height="1138" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>
<p><a href="https://vimeo.com/605289840">video-1630915308.mp4</a> from <a href="https://vimeo.com/user151004688">nguyen phu tuan K14</a> on <a href="https://vimeo.com">Vimeo</a>.</p>