Display a webpage inside a webpage.
Syntax
<iframe src="url" title="description"></iframe>
iframe attributes
height | sets height of iframe. |
width | sets width of iframe. |
src | url 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>