Hyperlinks or links as they are commonly called are very easy to do!
<a href="YOUR ULR HERE"> THE TEXT YOU WOULD WANT TO APPEAR HERE </a>
Example: <a href="http://www.angel-wings.co.nr/"> ANGEL WINGS </a>
and the example link above will look like this:
ANGEL WINGS
<a href="YOUR ULR HERE"><img border=0 src="YOUR IMAGE URL HERE"> </a>
Example:<a href="http://www.angel-wings.co.nr/"><img border=0 src="http://www.upkb.com/images/RHG69775.gif"> </a>
and the example link above will look like this:

If your page is so long that your visitor would have to scroll up and down a lot, no need to worry. You just have to provide them with a link that would take them on the specific part of your page or what we usually call an ANCHOR!
To start of you would need to name the particular part of the page you want to direct your visitor to. In our example let's use the name HERE.
<a name="HERE"> THIS IS THE SPOT</a>
Then on the link you want your visitor to click to go to THIS IS THE SPOT add this code
<a href=#HERE> CLICK HERE TO GO TO THIS IS THE SPOT </a>
let's try our examlpe, click the link below
CLICK HERE TO GO TO THIS IS THE SPOT
It's simple, all you have to do is name the particular part of the page this time let's use THERE
<a name="THERE"> YOU'VE FOUND "THERE"</a>
Then on the link you want your visitors to click to go to "THERE" add this code:
<a href="PUT THE URL OF THE PAGE WHERE THERE IS#THERE"> CLICK HERE TO GO TO "THERE" </a>
Example:<a href="terms.html#THERE"> CLICK HERE TO GO TO "THERE" </a>
Now let's try our example. I want you to go where "THERE" is. Please click the link below to be transporated
CLICK HERE TO GO "THERE"
Please come back here afterwards.
Here is the link for sending e-mails.
<a href="mailto:YOUR E-MAIL ADDRESS">E-MAIL ME</a>
Example:<a href="mailto:angelwings_staff@yahoo.com">E-MAIL ME</a>
then the link would look like the one below
E-MAIL ME
Back to HTML/CSS/PHP Tutorial Index