HTML/CSS/Link Attributes/rel

Материал из Web эксперт
Версия от 08:17, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"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>