previous | start | next

LINK

<LINK
HREF=url
REL=forward link type
REV=reverse link type
TITLE=title
TYPE=type>

Establishes a hierarchical organization for navigating between documents. The LINK element must reside within the HEAD element. The HEAD element may contain several LINK elements.

HREF=url
Specifies the URL that has a relationship to the current document.
REL=forward link type
Specifies the forward link type, that is, the type of document to which the link is being made. Link type "stylesheet" signifies that the associated LINK element specifies a link to a style sheet that may be applied to the HTML document containing the LINK element.
REV=reverse link type
Indicates that the document to which there is a link has a reverse link from the target back to the source document.
TITLE=title
Indicates an advisory title string. The character string supplied with this attribute is recommended for use in building a menu of alternative styles.
TYPE=type
Specifies the Internet media type and associated parameters for the linked style sheet. This allows the user agent to disregard style sheets in unsupported notations, without the need to first make a remote query across the network.

Example

<LINK HREF="http://www.microsoft.com/newdocnewdoc.htm">


previous | start | next