<video>
HTML <video> Element Reference
The HTML <video> element embeds video with optional controls, tracks, and alternative sources.
Categories
- Embedded content
Tag omission
Consult the HTML Living Standard for the precise tag-omission rules.
Content model
- Detailed content-model guidance will be added to this reference.
Attributes
Examples
Example
A practical video element example.
<video controls width="640">
<source src="demo.webm" type="video/webm">
<track kind="captions" src="captions.vtt" srclang="en">
</video>