FRAME
SETS
Frames may make your site look
better but there are lots of disadvantages of using frames. First
of all your visitors may never get to bookmark right page of your
site. It also makes is confusing to visit your page. Also when
you are using frames your text looks smaller then it's normal
size and your visitors things that there is too much information
so they don't even bother reading it. Click here to see the example of the frameset.
In the example what you saw was two different pages called leftframe.html and rightframe.html. Both of these pages ware displayed in
one page and the page was called frameset.html. Here are the tags I used to make that
frameset:
<FRAMESET
ROWS="25%,75%">
<FRAME SRC="leftframe.html"
NAME="left">
<FRAME SRC="rightframe.html" NAME="show>
</FRAMESET>
Note: 25% and 75%
are the sizes of frames.
You must be thinking what does NAME="left" and
NAME="show" means. Here is what that means. It means
that left part of the page is called Left and the right part of
the page is called Show. I named each part of the page because I
wanted my links to open in the right side of the page which was
called Show. Here are the tags I used on the links of left page:
<A
HREF="http://www.yahoo.com" TARGET="show">Yahoo</A>
By using that tag I told my
browser to open this link in window called show.
In the example page I used a row to divide my two pages. You can
also use columns by doing it like this:
<FRAMESET COLS="25%,75%">
<FRAME SRC="leftframe.html"
NAME="left">
<FRAME SRC="rightframe.html" NAME="show>
</FRAMESET>