HTML <link> href Atribut

❮ HTML tag <link>

Příklad

Odkaz na externí šablonu stylů:

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

Definice a použití

Atribut hrefurčuje umístění (URL) externího zdroje (nejčastěji souboru šablony stylů).


Podpora prohlížeče

Attribute
href Yes Yes Yes Yes Yes

Syntax

<link href="URL">

Hodnoty atributů

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 tag <link>