HTMLHTML12 min read

HTML YouTube

Embed YouTube videos safely using iframe.

David Miller
November 22, 2025
7.2k355

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