HTML
Hypertext Markup Language
Iframe means inline frame. It is defines a rectangular region within the document in which the browser can display a separate document, including scrollbars and borders.
This Attribute contains the URL of the content to be displayed in the floating frame. If absent, the frame is blank.
Syntax
The basic syntax of the <iframe> tag is given with:
Example
<html>
<head>
<title>Skillpundit</title> </head> <body>
<iframe width="400" height ="300" src ="https://www.skillpundit.com" name="A" frameborder="1"> </iframe>
<a href="http://skillpundit.com/major-countries.php" target="A"> </br>Skillpundit</a> </body> </html>
<title>Skillpundit</title> </head> <body>
<iframe width="400" height ="300" src ="https://www.skillpundit.com" name="A" frameborder="1"> </iframe>
<a href="http://skillpundit.com/major-countries.php" target="A"> </br>Skillpundit</a> </body> </html>
Output