
Information
The Basics
Text
Pictures
Spacing
Colors
Links
Alignment
Lists/Bullets
Tables
Frames
Multimedia
Forms
ISO Characters
Meta Tags
Contact Us

Email Support
Email Contact
|
 |
 |
Introduction
Text links allow you to make your text into a link, allowing you to direct users to other sections of your site, or someone eles's site.
In this section, you will be learning how to add text links on your 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>....
|
|
Test Your HTML
|
|