HTML Iframe
It is used to display a web page within another web page and used to display external objects including other web pages within a web page.
It is used to display a web page within another web page and used to display external objects including other web pages within a web page.
Below the syntax of iframe:
<iframe src="URL"></iframe>
We can set the width and height of iframe by using "width" and "height" attributes. By default, the attribute's values are specified in pixels but we can also set them in percent. i.e. 55%, 80%, 95% etc.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML iframe</title>
</head>
<body>
<iframe src="https://nexladder.com/html-tutorial" width="500" height="500">
</iframe>
</body>
</html>