if the link is in the same place as the page the link will be on then you do not need the entire address just the name.
So if I was putting a link on a page that was in the same folder as mywebsite6.html all I would need to put is mywebsite.html and not the entire long address.
Adding Links to your page December 17, 2004 9:32 PM
So open up notepad again, and go to file open and open the page you created before. Remember to go to your folder you created and also change the bottom arrow from text documents to all files, or your html page will not show up to be opened
Once opened it will say:
<HTML> <HEAD> <TITLE>My website</TITLE> </HEAD> <BODY BGCOLOR="#000000"> <FONT FACE="Verdana" SIZE="5" COLOR="#551A8B"> Wow look I just created a webpage!!!<br><br> </FONT> <FONT FACE="Arial" SIZE="2" COLOR="#3A5FCD"> Look I know how to change Fonts!!<br> <b>Plus I can make it bold</b><br> <i>Or Italic</i>, <u>or even Underlined</u><br> <b><i><u>I can even do all three</b></i></u> </FONT><br><br> <div align="center"><IMG SRC="avatar11.gif" width="100" height="100" border="0" alt="beauty"></div> </BODY> </HTML>
<HTML> <HEAD> <TITLE>My website</TITLE> </HEAD> <BODY BGCOLOR="#000000"> <FONT FACE="Verdana" SIZE="5" COLOR="#551A8B"> Wow look I just created a webpage!!!<br><br> </FONT> <FONT FACE="Arial" SIZE="2" COLOR="#3A5FCD"> Look I know how to change Fonts!!<br> <b>Plus I can make it bold</b><br> <i>Or Italic</i>, <u>or even Underlined</u><br> <b><i><u>I can even do all three</b></i></u> </FONT><br><br> <div align="center"><IMG SRC="avatar11.gif" width="100" height="100" border="0" alt="beauty"></div> <br><br> <A HREF=http://www.geocities.com/fatesblessing/mywebsite6.html">Click Here</A> </BODY> </HTML>
scroll down to where it has dots by words, its near the top of the page.
Click the links next to the dots and you will be taken to different parts of the same page. neat huh? So How do you do this?
First the part you want the link you will put this:
<A HREF="#blah">Click here</a>
Then where ever on the page you want it to take you, you put this:
<A NAME="blah">all about blah blah blah</a>
Instead of blah you can use whatever word you want, they just both have to be the same. You can add several by just creating a different name for each link.
If you want to link to the middle of a different page then you would put:
<A HREF="blahblah.htm#blah">Click here for info on blah</A>
do not worry about adding any of this to your page you are creating just now!