0% found this document useful (0 votes)
89 views2 pages

Iframe

An iframe can be used to display content from another website within a webpage. The iframe is added using HTML tags, with the src attribute specifying the URL of the page to embed. The height and width attributes control the size of the iframe, while setting the frameborder attribute to "0" removes the border around the embedded content. For example, YouTube videos could be displayed on Google's website using an iframe with the src pointing to YouTube's video URL.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
89 views2 pages

Iframe

An iframe can be used to display content from another website within a webpage. The iframe is added using HTML tags, with the src attribute specifying the URL of the page to embed. The height and width attributes control the size of the iframe, while setting the frameborder attribute to "0" removes the border around the embedded content. For example, YouTube videos could be displayed on Google's website using an iframe with the src pointing to YouTube's video URL.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Choose a webpage in which you may suggest to apply the iframe.

What will be the page to be included


inside the main web page?

Ex. Youtube inside Google

https://youtubemp4.to/

HTML Iframes
An iframe is used to display a web page within a web page.

Iframe Syntax
The syntax for adding an iframe is:
<iframe src="URL"></iframe>
The src attribute specifies the URL (web address) of the iframe page.

Iframe - Set Height and Width


Use the height and width attributes to specify the size.
The attribute values are specified in pixels by default, but they can also be in
percent (like "80%").

Example
<iframe src="demo_iframe.htm" width="200" height="200"></iframe>
Iframe - Remove the Border
The frameborder attribute specifies whether or not to display a border around
the iframe.
Set the attribute value to "0" to remove the border:

Example
<iframe src="demo_iframe.htm" frameborder="0"></iframe>

You might also like