Web Tools Table Maker3schools TranslateImage CompressorFavicon Icon GeneratorCrop & Resize Image
Apu
Apu November 16, 2022 › #Attribute #Element

How to embed a webpage into another web page

In this article, you will learn how to embed a webpage into another web page in HTML.

What does embed mean? #

Embed means integrating external content into another website or page. Suppose we have a webpage https://example.com and we want to display that webpage on this webpage. For this, we can use HTML <iframe> element.

Syntax #

<iframe src="" width="" height=""></iframe>
  1. src : src attribute is used to specify the URL of the document that are embedded to the <iframe> element.
  2. width : The width attribute specifies the width of an iframe.
  3. height : The height attribute specifies the height of an iframe.
save
listen
AI Answer
Write Your Answer
loading
back
View All