OK, let's make home.html, here.html and there.html. Since you've been working very hard (and I'm sick of typing), just go ahead and copy the following into Notepad and save them.

Save the following as home.html

<HTML>
<HEAD>
<TITLE>A Practice Page- Home</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1 ALIGN=center>You are home.</H1>
Welcome to my homepage! This page should be attractive and easy to navigate because my
teacher Joe, besides being VERY handsome, has taught me the right way to build Frames!
<P><CENTER>Enjoy your stay!</CENTER>
</BODY>
</HTML>

VIEW home.html


Save this as here.html

<HTML>
<HEAD>
<TITLE>A Practice Page- Here</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1 ALIGN=center>Here</H1>
Welcome to here. Here is where everything happens. Here you'll find more neat stuff
than you can shake a stick at. Have you ever seen anyone shake a stick at something??
I never have.
</BODY>
</HTML>

VIEW here.html


And of course this one as there.html.

<HTML>
<HEAD>
<TITLE>A Practice Page- There</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<H1 ALIGN=center>This is There</H1>
I would like to make a proposal. We have all seen that little arrow on signs that say
"You are here". Wouldn't it be better if there were also another arrow that says "You
should be there". It would make things so much easier.
</BODY>
</HTML>

VIEW there.html

Now view your Master Page.


Oops, we forgot something. If you caught the problem back when you were making the directory page... good for you! So open up directory.html and add the necessary TARGETs.

<HTML>
<HEAD>
<TITLE>Practice Page- Directory</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF">

<H3>Directory</H3>

<A HREF="home.html" TARGET="MAIN-WINDOW">Home</A>

<P><A HREF="here.html" TARGET="MAIN-WINDOW">Go here</A>
<BR><A HREF="there.html" TARGET="MAIN-WINDOW">or there</A>

<P>or visit
<BR><A HREF="http://www.yahoo.com/" TARGET="_top">Yahoo</A>
<BR><A HREF="http://home.netscape.com/" TARGET="_top">Netscape</A>

</BODY>
</HTML>

Now try your Master Page.

<< BACK         NEXT >>