Quizzes & Puzzles111 mins ago
a website in a website
4 Answers
How do i embed a website in my own website using HTML?
Help appreciated.
Thanks, Matt
Help appreciated.
Thanks, Matt
Answers
Best Answer
No best answer has yet been selected by MTIH1992. Once a best answer has been selected, it will be shown here.
For more on marking an answer as the "Best Answer", please visit our FAQ.Or, if you're using asp and you want to embed another page of your own with a local URL (or even jsut something smaller like a navigation bar or header image) you can use :
<!--#include file="localpage.html"-->
You can't use this to "embed" a page from another site. I'm sure the included file has to be stored in the same place as the one displaying it.
<!--#include file="localpage.html"-->
You can't use this to "embed" a page from another site. I'm sure the included file has to be stored in the same place as the one displaying it.
If you're still listening then this is probably overkill :
http://www.w3schools.com/tags/tag_iframe.asp
That outlines all the add-ons to that "iframe" tag. You can add in something like width="100%"
you can also add height= something or other. Use either percentages or a number (of pixels).
The tag would then begin:
<iframe src="http://www.unipeak.com/" width="400" height="300">
http://www.w3schools.com/tags/tag_iframe.asp
That outlines all the add-ons to that "iframe" tag. You can add in something like width="100%"
you can also add height= something or other. Use either percentages or a number (of pixels).
The tag would then begin:
<iframe src="http://www.unipeak.com/" width="400" height="300">