FRAMES

1.  Make three pages that have different background colors.  You remember
	how to do that?  Put the names of three different people on each
	page.  Call them one.html, two.html, and three.html.

2. You are going to make a page called main.html with the FRAMESET tag as
	follows (but you supply the angle brackets):

	FRAMESET COLS=20%,*
	  FRAME SRC=nav.html
	  FRAME name=fooblob SRC=one.html
	/FRAMESET

3.  How does that look in the browser?  It should have a bad rhs because
	we haven't written nav.html yet.

4.  Write nav.html as having three bullets:
	
	LI
	  A HREF=one.html TARGET=fooblob
	  one
	  /A
	LI
	  A HREF=two.html TARGET=fooblob
	  two
	  /A
	LI
	  A HREF=three.html TARGET=fooblob
	  three
	  /A

5.  Try main.html now.  Got the idea?

6.  Change the names of the links so that they are the names you put on each page.

7.  You can add a STYLE attribute to the BODY tag in each of the pages
	one, two, and three.html, which changes the color of the
	scrollbar-track-color.  See if you can find the name of the style
	property by searching google for scrollbar-track-color.

	It'll be something like 
	
	BODY STYLE=scrollbar-face-color:red

	except you won't say face and you won't say red.

8.  Change a few of the scrollbar properties on each page.

9.  You can choose between upper and lower frames if you add a frameset
	within your frameset.  Change main.html as follows:

	FRAMESET COLS=20%,*
	  FRAME SRC=nav.html
	  FRAMESET ROWS=50%,50%
	    FRAME SRC=one.html name=upper
	    FRAME SRC=two.html name=lower
	  /FRAMESET
	/FRAMESET

	And now you have to change nav.html so it targets upper or lower
	instead of fooblob.

	Can you make use of six links on the nav.html page?  Hmm?

10.  Why would you want to give the nav.html frame a name, e.g., barblob,
	and target that?  Well, imagine you have navfriends.html and
	navenemies.html.  You originally load the lhs frame with
	navfriends.html.  But if you click on a link, it loads the lhs frame,
	which you have named barblob, with navenemies.html.

	Do it.  You can't be done until you can get this right!