HTML Video
Embed videos directly into webpages.
David Miller
December 4, 2025
6.0k260
Video tag plays video files.
## Example
```html
<video controls width="300">
<source src="movie.mp4" type="video/mp4" />
</video>
```
## UI Preview
Video player with play button.
## Tip
Always include controls for user.
#HTML#Media