Well... what you're talking about is frames. They're *generally* a bad idea, but, in this case, might be a good plan.
There are different kinds of frames: FRAMES and IFRAMES.
Frames are compatible with almost ALL browsers, including the really old stupid ones. Great for compatibility.
However, they have some tech issues... just kinda messy.
And, they aren't very controllable.
You basically need to do a <frameset> command that will say "there are two frames on this page", but I'm not familiar with that... google it, and look for the specific setup you want.
(frames are html pages displayed on the same page... think of frame as in a windowframe... holding a view to another site)
A less compatible method is using iframes. They are easier, but aren't as compatible with old browsers. I've heard, generally, that if a browser has javascript, it has iframes... so... they're pretty much ok.
Here's you you'd do that:
In your html, you'd have something like:
Code:
<html>
<body>
This is my page.<br>
Look below! It's a frame with my forum in it!<br>
Right here:
<iframe src="http...yoururl.htm" width=PIXELS/% height=PIXELS/%></iframe>
This is after my iframe.<br>
Thanks for viewing.<br>
</body>
</html>
Note: even though it's much like an image tag in simplicity, the iframe tag DOES need a closetag. (</iframe).
Also, I have yet to figure out what, if anything, goes betwee the <iframe> and </iframe> tags... doesn't make much sense. But... whatever, it DOES work
Bookmarks