Title: Text Links
URL: http://www.activejump.com/g-1.shtml
Email: webmaster@activejump.com

Introduction

A text link allows the programmer to create text that acts as a link, so that when it is clicked on by a user, it will transfer them to another web page.
Text Link
This tag allows you to make text into a link. The tag looks like <A HREF="url">. The starting tag is <A HREF="url"> and the closing tag is </A>. The text between these two tags is what is the link. The text "url" needs to be replaced with the address you are linking to. Here is an example using the link tag.

index.html - Notepad
....<BODY>

<A HREF="http://www.activejump.com">

Active Jump Home Page

</A>

</BODY>....

My Homepage - Microsoft Internet Explorer
Active Jump Home Page