HTMLHTML12 min read

HTML Video

Embed videos directly into webpages.

David Miller
Dec 4, 2025
6,232180

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