HTML Iframes
HTML Iframes
On this page
Iframe Syntax
<iframe src="url" title="description"></iframe>
Iframe Height and Width
<iframe src="url" height="200" width="300" title="Iframe Height and Width"></iframe>
HTML Iframe Height and Width
<!DOCTYPE html>
<html>
<head>
<title>Iframe Height and Width</title>
</head>
<body>
<h4>HTML Iframe Height and Width</h4>
<iframe src="https://www.csias.in" height="200" width="300" title="Iframe Example"></iframe>
</body>
</html>Remove Border from IFrame
<iframe src="url" style="border:none;" title="Remove Border from IFrame"></iframe>
HTML Remove Border from IFrame
<!DOCTYPE html>
<html>
<head>
<title>Remove Border from IFrame</title>
</head>
<body>
<h4>HTML Remove Border from IFrame</h4>
<iframe src="https://www.csias.in" style="border:none;" title="Remove Border from IFrame"></iframe>
</body>
</html>Iframe Target in Link
<!DOCTYPE html>
<html>
<head>
<title>Iframe Target in Link</title>
</head>
<body>
<h4>Iframe Target in Link</h4>
<iframe src="exp-iframe.html" name="iframe_a" height="200px" width="200%" title="Iframe Example"></iframe>
<p><a href="https://www.csias.in" target="iframe_a">csias.in</a></p>
</body>
</html>