HTML/CSS/Link Attributes/rel
Версия от 09:21, 26 мая 2010; (обсуждение)
"rel" describes the relationship between the document in href and the current document
<HTML>
<head>
<Title>Example For rel</Title>
</head>
<BODY>
<a id="myL"
href="examples.css"
rel="stylesheet"
target="_blank">
The style sheet is defined in examples.css.</a>
</BODY>
</HTML>