Lecture

HTML iframe Tag

The <iframe> tag allows you to display another webpage within the current webpage.

This embedded webpage will occupy a frame within a specific area of your webpage.

For example, using the following HTML code, you can embed another webpage within the current page.

Display https://www.example.com
<iframe src="https://www.example.com"></iframe>

In the code above, the src attribute specifies the URL of the webpage to embed.

The above example shows the webpage "https://www.example.com" inside an <iframe> tag.

To display a YouTube video on your webpage, you need to know the URL of the video uploaded to YouTube.

However, embedding video files directly into your webpage is impractical due to their large size, and YouTube does not provide direct URLs to video files to protect content rights.

Yet, many webpages display YouTube videos.

YouTube offers an <iframe> tag that allows you to embed videos without the burden of the video size, while protecting the content creator's rights and sharing useful content widely.

YouTube iframe Example
<iframe width="320" height="180" src="https://www.youtube.com/embed/W0DCi5kwURM" title="iframe example" allow="fullscreen;" ></iframe>

The above iframe displays a YouTube video within your webpage at a width of 320px and a height of 180px.



The "src" attribute can be found by right-clicking on the YouTube video, selecting Copy embed code, and pasting the copied value into your text editor.

Alternatively, follow the format https://www.youtube.com/embed/{YouTubeVideoID}, replacing {YouTubeVideoID} with the video's unique ID.

For example, the unique ID for the YouTube video at https://www.youtube.com/watch?v=AY5qcIq5u2g is AY5qcIq5u2g.

So you would input src="https://www.youtube.com/embed/AY5qcIq5u2g".

Additionally, title="iframe example" sets the title of the iframe element, and allow="fullscreen;" enables the fullscreen button on the YouTube iframe.

By using an iframe in this way, you can display YouTube videos on your webpage without needing the original video URL.

Now, let's put a YouTube video in the fourth grid item of the gallery.

Lecture

AI Tutor

Design

Upload

Notes

Favorites

Help