An iframe is used to display a web page within a web page.
Syntax for adding an iframe:
The URL points to the location of the separate page.
The target attribute of a link must refer to the name attribute of the iframe:
Try it yourself »
Syntax for adding an iframe:
<iframe src="URL"></iframe>
Iframe - Set Height and Width
Iframe - Remove the Border
Use iframe as a Target for a Link
An iframe can be used as the target frame for a link.The target attribute of a link must refer to the name attribute of the iframe:
Example
<iframe src="demo_iframe.htm" name="iframe_a"></iframe>
<p><a href="http://www.w3schools.com" target="iframe_a">W3Schools.com</a></p>
<p><a href="http://www.w3schools.com" target="iframe_a">W3Schools.com</a></p>
Try it yourself »