If you want to add links to your favorite web sites or one of your subpages, you can use this code to make a "Hyperlink" that's what they are technically called but most people just call them links.
<A HREF="put site address here"> Type in the text you want the link to be on</A>
So here's an example of a link, this link will go to my homepage.
Click here to go back.
This is what the HTML code looks like.
Click <A HREF="http://members.fortunecity.com/davemeech/index.htm">here</A> to go back.
If you want to add an email link on the other hand all you need to do is this.
<A HREF="mailto:youremailaddress">Text you want to put link on.</A>
Here's an example of an email link, this link will go directly to a new email screen already addressed to my email address.
Make sure you Email me.
Here's what I typed.
Make sure you <A HREF="mailto:[email protected]"Email</A> me.
Now you'll probably be wanting to add some images to your page. Just refer to the HTML codes below.
<IMG SRC="sourceofimage" ALIGN=where the text beside the image will be located>
Here's an example of an image HTML code.
This is an animated picture of
Beavis I found at some cool web site.
Here's what I typed.
This is an animated picture of<IMG SRC="http://www.pacificcoast.net/~mudhoney/anigifs/bevis.htm" ALIGN=absolute middle> Beavis I found at some cool website.
Pretty cool eh? I think so. If you're confused about the align part, it only determines where beside the image the text is going to be located so if you put ALIGN=top, the text will be beside the gif at the top, there's also middle, bottom, text top, absolute middle, absolute bottom, left, right, baseline and browser default.