|
HTML
The tags used to produce links are the and .
The tells where the link should start and the indicates where
the link ends.
Everything between these two will work as a link.
The target of the link is added to the tag
using
the href="http://www.whateverpage.com" setting.
The example below shows how to make the word here work as a link to
yahoo.
|
Click <a href="http://www.yahoo.com">here</a> to go to yahoo.
|
|
You simply:
Specify the target in the .
Then add the text that should work as a link.
Finally add an tag to indicate where
the link ends.
|