HTML iFrames

HTML iFrames

HTML iframe is used to display a web page within a web page.
HTML iframes defines an inline frame.
An HTML iframe is defined with the <iframe> tag.

The HTML iframe tag can have the following attributes:
The src attribute is used to provide the URL for the inline frame page.
The width attribute specify the width of the iframe.
The height attribute specify the height of the iframe.
The name attribute specify the name of the iframe.

HTML iFrames

<!DOCTYPE html>
<html>
	<head>
		HTML iFrames
	</head>
<body>
	
</body>
</html>

Result:



HTML iFrames