Now let's make our Directory page. Start with the following and save it as directory.html.
<HTML> <HEAD> <TITLE>Practice Page- Directory</TITLE> </HEAD> <BODY BGCOLOR="#FFFFFF"> </BODY> </HTML>
VIEW directory.html VIEW Master Page
Give it a heading and write in the text of all the links. We'll add the link info in a minute.
<HTML> <HEAD> <TITLE>Practice Page- Directory</TITLE> </HEAD> <BODY BGCOLOR="#FFFFFF"> <H3>Directory</H3> Home <P>Go here <BR>or there <P>or visit <BR>Yahoo <BR>Netscape </BODY> </HTML>
VIEW directory.html VIEW Master Page
Now add the link information.
<HTML> <HEAD> <TITLE>Practice Page- Directory</TITLE> </HEAD> <BODY BGCOLOR="#FFFFFF"> <H3>Directory</H3> <A HREF="home.html">Home</A> <P><A HREF="here.html">Go here</A> <BR>or <A HREF="there.html">there</A> <P>or visit <BR><A HREF="http://www.yahoo.com/">Yahoo</A> <BR><A HREF="http://home.netscape.com/">Netscape</A> </BODY> </HTML>
VIEW directory.html VIEW Master Page
Wasn't THAT fun! No I suppose it wasn't. Take 5. Stretch, go pee, get cup of coffee, scratch yer butt, whatever. Take a break. I am.
<< BACK NEXT >> |