Display a webpage inside a webpage.

Syntax

<iframe src="url" title="description"></iframe>

iframe attributes

heightsets height of iframe.
widthsets width of iframe.
srcurl of document or webpage to load within iframe.
<html>
<head>
</head>
<body>
<iframe src="mywebpage.html" height="100" width="200"></iframe>
</body>
</html>

Remove iframe border

iframe has default border, to remove iframe border use frameBorder=”0″ or css property.

<html>
<head>
</head>
<body>
<iframe src="mywebpage.html" frameBorder="0" style="border:none;"></iframe>
</body>
</html>