+ 6
How to show website in website?
Example: Show Google in my website?
7 Respuestas
+ 13
USE iframe tag then.
<iframe src="url"></iframe>
Note that, some websites are configured to not to be displayed in iframe. Such sites can't be displayed in our page.
+ 9
By using iframe tag
+ 8
More information about iframe check it out here
https://www.w3schools.com/html/html_iframe.asp
HTML Iframes - W3Schools
+ 6
You can use iframe tag to display website in website.
<iframe src="anyurl" ></iframe>
+ 3
Yes. Inline frames.
+ 1
Use <iframe src="url of that website"></iframe>