KISS HTML
You CAN write HTML code from scratch

The "A" tag, or as is usually seen <A HREF=" "> tag


The "A" tag is used for links. There are 3 most often used links:
1. The Local Link - this link is to another web page on your own web site.
<A HREF="remingtn.htm">
2. The WWW Link - A link to someone else's web site.
<A HREF="http://www.losangeles.com">
3. The E-mail Link - A link on your web site which automatically lets a visitor send you e-mail addressed to you.
<A HREF="mailto:your_name@xxxx.yyy">
Note: In the "mailto:" above, make sure you include your full e-mail address and not just your name.
All the above are closed with </A>
We'll add all 3 to our web page below.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 //EN">
<HTML>

<HEAD>
<TITLE>Cyberperson's First Web Page</TITLE>
</HEAD>

<BODY>
<CENTER>
<FONT SIZE="6" COLOR="#0000FF">
<B>
This web page belongs to Cyberperson. <BR>
</B>
</FONT>
<P>
<IMG SRC="images/guy-comp.gif"> </P>
<P>
<HR> </P>
<P>

<CENTER>
<FONT SIZE="5">
I live in Los Angeles. <BR>
</P> </FONT> </CENTER>
<FONT SIZE="3" COLOR=#000000">
Los Angeles is the largest city on the west coast. There are over 8 million people living in the area. Surrounded by mountains, and bordered by the Pacific Ocean, you can find more to do here than almost anywhere else in the world! You can learn more about my city by going to this
<A HREF="http://www.losangeles.com">
Los Angeles link. </A>
</FONT> <BR>
<P>

<CENTER>
<FONT SIZE="5">
I work for Calliope Studios. <BR>
</P> </FONT> </CENTER>
<FONT SIZE="3" COLOR=#000000">
Calliope produces titles and introductions to Hollywood movies and TV shows. You can see my work at the beginning of many of the TV shows of today. </FONT> <BR>
<P>

<CENTER>
<FONT SIZE="5">
I have a dog named Remington. <BR>
</P> </FONT> </CENTER>
<FONT SIZE="3" COLOR=#000000">
Remington is a black Labrador Retriever. He loves the water and swims the whole time we go to the beach. He is my very best friend. I have some photos of Remington you can see by clicking
<A HREF="remingtn.htm">
HERE. </A>
</FONT> <BR>
<P>

<CENTER>
<FONT SIZE="5">
My hobbies are cooking and movies. <BR>
</P> </FONT> </CENTER>
<FONT SIZE="3" COLOR=#000000">
We have friends come over twice a month for a "bring-your-own-dish" party. The food is great and we do a lot of recipe swapping. If you would like some of my recipes, send me an e-mail by clicking
<A HREF="mailto:your_name@xxxx.yyy">
HERE. </A>
<BR>
</FONT>

</BODY>

</HTML>

Placing the "A HREF" links on the web page would make it look like this: click Here

  <- Previous | Next ->