# Next.js embed youtube video

> Learn how to embed a YouTube video in a Next.js page: just drop in an iframe pointing at the youtube.com/embed URL with the video id.

Author: [Flavio Copes](https://flaviocopes.com/about/) | Published: 2024-09-14 | Topics: [Next.js](https://flaviocopes.com/tags/next/) | Canonical: https://flaviocopes.com/nextjs-embed-youtube-video/

Just add an iframe, done

```shell
<iframe
  className='w-full aspect-video self-stretch md:min-h-96'
  src='https://www.youtube.com/embed/<video_id>'
  title='My cool video'
  aria-hidden='true'
/>
```
