HTML <link> href Özelliği

❮ HTML <link> etiketi

Örnek

Harici bir stil sayfasına bağlantı:

<link rel="stylesheet" href="styles.css">

Tanım ve Kullanım

Nitelik href, harici kaynağın (çoğunlukla bir stil sayfası dosyası) konumunu (URL) belirtir.


Tarayıcı Desteği

Attribute
href Yes Yes Yes Yes Yes

Sözdizimi

<link href="URL">

Özellik Değerleri

Value Description
URL The URL of the linked resource/document.

Possible values:

  • An absolute URL - points to another web site (like href="http://www.example.com/theme.css")
  • A relative URL - points to a file within a web site (like href="/themes/theme.css")

❮ HTML <link> etiketi