htmlcenter.gif (5710 bytes)
Welcome to The HTML Center brought to you by Meg of Babyz Design and Petz Design! I hope this page helps you learn HTML better =0) ~Meg

Home
Basics of HTML
Frames

Resources
Forum
Contact Me
Frames are kinda like a table (you know Microsoft Excel) excep they have different pages inserted in the Frames! Here is an examplke of a frames commands all my typing is in the purple.
<HTML>
<------ starts off every page
<TITLE> Pages Title </Title>
<------this is what appears in the upper left hand corner of your browser.
<FRAMESET COLS="20%,80%">
<--When I work with frames this is what I normaly use this works as a good contents page!
<FRAME SRC="left.htm">
<---- This is where you put the URL of the page you want on the left inbetween the " "
<FRAME SRC="main.htm">
<--- This is the page you want to show up on the right!
</FRAMESET>
<-----closing line for the original FRAMESET code.
</HTML>
<----closing the HTML tag

<FRAMESET> <----Alerts the browser that this is a frame code
COLS=
<-----inserted in the FRAMESET tag used to specify the width of the frames. For a contents page COLS="20%,80%" should work.

<FRAME SRC= " ">
<----- in between the qoutes you put the link of the page you want to go there.

I hope this makes sense. If not e-mail me here and I will try and help you!