HTML Tutorial
HTML Forms
HTML Graphics
HTML Media
The HTML <video>
element is used to show a video on a web page.
Multimedia comes in many different formats. It can be almost anything you can hear or see, like images, music, sound, videos, records, films, animations, and more.
Web pages often contain multimedia elements of different types and formats.
<video>
ElementTo show a video in HTML, use the <video>
element:
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>