|
The
<a> and </a> tags are used to create
links from one web page to another. The following
is an example of a link to Enetrics Communications:
|
<a
HREF="http://www.2kweb.net">This
links to Enetrics Communications</a> |
As
you can see there is a parameter in this example
named HREF. The value assigned to the HREF parameter
indicates the URL that will be used for navigation
when a person clicks on the text associated with
the Link.
The
associated text is the text after the <a HREF="...">
and the </a> tags.
To
create a link that can be clicked on to start
up the mail program associated with the browser,
use the following link. Notice there is not a
whole lot that is different from linking with
the mailto: option and the http option.
|
<a
HREF="mailto:sales@2kweb.net">Click
here to e-mail our Sales Department</a> |
|