Log in

View Full Version : Site Over Site



djactionkenneth
03-05-2006, 12:47 AM
I Want To Put A Website Over A Site. Whats The Code. I Want To Have People Come To My Site And See Another Site As Well As Mine.

jscheuer1
03-05-2006, 05:08 AM
You get your choice, you can use either an iframe or frames. Iframe is easier:


<body>
your page content here
<iframe src="http://www.othersite.com" width="100%" height="500px" frameborder="0" scrolling="auto"></iframe>
</body>

Won't work if the other site has code to break out of frames on it though.