How to embed an external webpage without using iframe?

by tressie.damore , in category: HTML & CSS , a month ago

How to embed an external webpage without using iframe?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by cortez.connelly , a month ago

@tressie.damore 

One way to embed an external webpage without using an iframe is to use an HTML tag. Here's an example of how you can do this:

  1. Create a new HTML file (e.g., embed.html) and open it in a text editor.
  2. Add the following code to the file:
1
2
3
<object data="https://www.externalwebsite.com/page" type="text/html" width="100%" height="600px">
    Your browser does not support embedded content. Click <a href="https://www.externalwebsite.com/page">here</a> to view the content.
</object>


  1. Replace the URL in the data attribute with the URL of the external webpage you want to embed.
  2. Save the file and open it in a web browser to see the embedded webpage.


By using the tag, you can embed external webpages without using an iframe.