0 votes
in HTML by (30.8k points)
How to create a nested webpage in HTML?

1 Answer

0 votes
by (23.1k points)
The HTML iframe tag is used to display a nested webpage. In other words, it represents a webpage within a webpage. The HTML <iframe> tag defines an inline frame. For example:

<!DOCTYPE html>    

<html>    

<body>    

<h2>HTML Iframes example</h2>    

<p>Use the height and width attributes to specify the size of the iframe:</p>    

<iframe src="https://www.javatpoint.com/" height="300" width="400"></iframe>    

</body>    

</html>

Related questions

0 votes
0 votes
...