Home »
HTML
HTML Iframes
By IncludeHelp Last updated : October 13, 2024
HTML Iframes
In HTML, iframes are used to display a webpage inside another webpage.
Syntax
<iframe src="URL"></iframe>
The <iframe> tag is used to define an iframe. And the src attribute is used to specify the location (URL) of the webpage that is to be included.
Iframe Tag Properties
Some of the common properties of the iframe are,
1. height and width properties
The size of the iframe is defined in HTML using height and width properties.
Method 1: In HTML using height and width attribute, the default unit to define the values in pixels.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Iframes in HTML </h1>
<p>Example to define height and width in iframe</p>
<iframe src="https://www.includehelp.com/" width="500" heigth="200"></iframe>
</body>
</html>
Output
Method 2: In CSS using height and width of iframe.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Iframes in HTML </h1>
<p>Example to define height and width in iframe</p>
<iframe src="https://www.includehelp.com/" style="height:400px; width:500px"></iframe>
</body>
</html>
Output
2. Iframe borders (The border property)
In iFrames, there is a default border around it. You can define the border for the iframe in HTML using CSS border property.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Iframes in HTML </h1>
<p>Example to define height and width in iframe</p>
<iframe src="https://www.includehelp.com/" style="border: 2px dotted green"></iframe>
</body>
</html>
Output
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Iframes in HTML </h1>
<p>Example to define height and width in iframe</p>
<iframe src="https://www.includehelp.com/" style="border: none;"></iframe>
</body>
</html>
Output
3. Changing link in iframe
In the iframe, the link can be changed for the iframe to the next link in an event. The attribute target and name are required.
The name attribute defines the name iframe whose link is to be redefined.
The target attribute is defined in another tag with the same value as the name of the iframe and will be used to replace the src of the iframe.
<html>
<head>
</head>
<body>
<h1>Iframes in HTML </h1>
<p>Example to replace link in iframe</p>
<iframe src="https://www.includehelp.com/" name="iframe1" width="500" height="450"></iframe>
<br>
<a href="https://www.includehelp.com/scala/" target="iframe1">Lets see my new article</a>
</body>
</html>
Output
After cliking on the link...