|
HTML Links
Hyperlink to another document bind webpages together into
a website. The following is a link to Microsoft.com:
<a href="http://www.microsoft.com>Microsoft</a>
This would produce:
Microsoft
It can also be used as a named anchor (or bookmark) which
can be linked to:
<a name="anchor"></a>
It can then be linked to by:
< a href="#anchor">Link</a>
Clicking this link would scroll the page to the section where
the a tag with the coresponding name has been placed. This
is commonly used in long documents and for "top of page"
links.
|