Click to See Complete Forum and Search --> : Need to open another Web Site in my site


Toast
05-04-2005, 09:36 AM
Hey Gang

I am having some problems creating the code that will allow me to open another Web site page in my site so that it looks and feel like mind. Any advice for a poor guy like? :confused:

Toast
05-04-2005, 10:23 AM
Can anyone help me

scragar
05-04-2005, 10:33 AM
<iframe src="URL"></iframe>

is this what you want?

Toast
05-04-2005, 10:37 AM
how do you write the code that will open my affiliate site in my site but leave the navigation bar and relating items at the top?

scragar
05-04-2005, 10:42 AM
<frameset rows="10%,90%">
<frame src="MyHeader.html">
<frame src="http://www.google.com">
</frameset>

the tree
05-04-2005, 10:47 AM
Or, if you want to be standards compliant:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Page title</title>
</head>
<frameset rows="10%,90%">
<frame src="MyHeader.html">
<frame src="http://www.google.com">
<noframes>
<p>Alternate content...</p>
</noframes>
</frameset>
</html>http://www.freewebs.com/mytestingzone/Frames.html

Toast
05-04-2005, 10:58 AM
Thanks guys, but I have navigations for my site at the top and the left side of my page that I want to keep. The code keep removing all the information and navigation bar at the left of the page. How do I prevent that from happening

the tree
05-04-2005, 11:07 AM
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<style type="text/css">
<!--
/*If you're using a diffent method of layout then change accordingly*/
#top {clear: both;}
#left, #main {float: left;}
#left {width: 30%;}
-->
</style>
<body>
<div id="top">Top Bit</div>
<iframe id="main" src="http://google.com">Oh dear, you don't seem to be suporting frames, skip strait to <a href="http://google.com">Google</a>.</iframe>
<div id="left">Left bit</div>
</body>
</html>

Toast
05-05-2005, 03:04 AM
I just cannot seem to get this right. Can someone please please help me. I am losing my mind here. :mad: