HTMLHTML10 min read

HTML YouTube

Embed YouTube videos safely using iframe.

David Miller
Nov 23, 2025
14.6k656

YouTube videos are embedded using iframe.

## Example
```html
<iframe
  width="300"
  height="200"
  src="https://www.youtube.com/embed/VIDEO_ID"
></iframe>
```

## UI Preview
YouTube video player appears.

## Tip
Use embed URL, not normal video URL.
#HTML#Media