Attributo HTML <link> href

❮ Tag HTML <link>

Esempio

Collegamento a un foglio di stile esterno:

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

Definizione e utilizzo

L' hrefattributo specifica la posizione (URL) della risorsa esterna (il più delle volte un file di foglio di stile).


Supporto del browser

Attribute
href Yes Yes Yes Yes Yes

Sintassi

<link href="URL">

Valori di attributo

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

❮ Tag HTML <link>