Saturday, July 27, 2013

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




Syntax for adding an iframe:
<iframe src="URL"></iframe>
The URL points to the location of the separate page.

Iframe - Set Height and Width

Example

<iframe src="demo_iframe.htm" width="200" height="200"></iframe>

Try it yourself »


Iframe - Remove the Border


Example

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

Try it yourself »


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>

Try it yourself »