HTML Iframes

HTML Iframes

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>
Iframe Height and Width

HTML Iframe Height and Width

html
<!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>
Remove Border from IFrame

HTML Remove Border from IFrame

html
<!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>
<!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>