You are on page 1of 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