Тег LINK
LINK
<LINK
DISABLED
HREF=string
ID=string
REL=STYLESHEET
TITLE=string
TYPE="text/css"
>
Used to specify a typed hyperlink between the document and some other
resource.
- DISABLED
- Used to disable an element.
- HREF=
- Specifies the destination URL or anchor point.
- ID=
- An SGML identifier used as the target for hypertext links or for naming
particular elements in associated style sheets. Valid names to script with are
any alphanumeric string that begins with a letter. Valid special characters
include underbar "_".
- REL=
- The REL attribute gives the relationship(s) described by the hypertext link
from the anchor to the target. The value is a comma-separated list of
relationship values. Values and their semantics will be registered by the HTML
registration authority. The default relationship if none other is given is void.
The REL attribute is only used when the HREF=
attribute is present.
- TITLE=
- The Title attribute is used to provide advisory information.
- TYPE=
- Indicates the type of style sheet.
This element may only be used within the HEAD tag.
The start tag is required, and the end tag is optional.
Example
<LINK REL=stylesheet HREF="styles.css" TYPE="text/css">