video tag html
<!DOCTYPE html>
<html>
<body>
<h1>Video TITLE</h1>
<video width="320" height="240" controls>
<source src="Video Link">
</video>
</body>
</html>
video tag html
<!DOCTYPE html>
<html>
<body>
<h1>Video TITLE</h1>
<video width="320" height="240" controls>
<source src="Video Link">
</video>
</body>
</html>
video tag html5
<!-- Non-Semantic: -->
<video width="100" height="100" controls>
<source src="video.mp4" type="video/mp4">
Your browser does not support the video element.
</video>
<!-- The text below <source> is displayed if your browser cannot display
the video itself -->
<!-- Semantic: -->
<figure>
<video width="100" height="100" controls>
<source src="video2.mp4" type="video/mp4" />
Your browser does not support the video element.
</video>
</figure>
<!-- <Figure> is a semantic element for objects such as audio, video, images,
or embedded content. If you also noticed the / at the end of <source>, this is
simply to ensure the tag closes off. It's not required but is considered a
common practice. -->
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>
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