HTML Tutorial
<video>
The <video>
tag is used to embed videos into HTML documents. With the <video>
tag, you can control the playback and appearance of the video.
<video>
<video>
<video src="video.mp4"></video>
<video src="video.mp4" autoplay muted></video>
<video src="video.mp4" width="640" height="480"></video>
Simple HTML Example: Exploring the <video>
Tag
<!DOCTYPE html>
<html>
<body>
<h1>Video Tag Demo</h1>
<video src="video.mp4" controls width="640" height="480"></video>
</body>
</html>