hey all,
i'm working on this test site to get frames to work. i've got the two frames on the left and middle showing a page but they will only show one page and not another if i make a new one.
here's the code below.
<HTML>
<HEAD><TITLE>TEST</TITLE>
</HEAD>
<FRAMESET BORDER = 5 BORDERCOLOR = brown ROWS="90,*">
<FRAME SRC = "top.html" SCROLLING = NO>
<FRAMESET COLS="170,*">
<FRAME SRC = "live.html" SCROLLING = NO>
<FRAME SRC = "live.html">
</FRAMESET>
</FRAMESET>
</HTML>
and here's the other page for the "top" frame file
<HTML>
<HEAD>
</HEAD>
<BODY BGCOLOR = "RED"><BR><BR>
</BODY>
</HTML>
the coding is picking up the "live" page but not the "top" page. i'm new (meaning just started yesterday) to HTML...where am i going wrong?