I have to include a webpage inside my webpage’s div. I want somehting like iframe to be done with DIV. Basically, I will be providing a URL to my div and it has to open it inside itself… Do we have something like this in modern HTML? I cannot use frames as some browsers have issues with frames.
I have to include a webpage inside my webpage’s div. I want somehting like
Share
Nope. You can’t embed a complete HTML document inside another div element as this is a block level element and W3C has defined what could be included inside it.
But there is a workaround. Follow these steps:
<body>element and put it inside yourdivelement<head>element and append them to the<head>element of your existing pgae.