0 votes
in HTML by
How to create a nested webpage in HTML?

1 Answer

0 votes
by
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

+1 vote
asked Jan 28, 2021 in HTML by SakshiSharma
0 votes
asked Feb 16 in HTML by DavidAnderson
...