Latest web development tutorials

HTML link href attribute

HTML link Tag Reference HTML <link> tag

Examples

Link to an external style sheet:

<link rel="stylesheet" type="text/css" href="theme.css">

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support the href attribute.


Definition and Usage

href attribute specifies the external resources (usually the style sheet file) the location (URL).


Differences between HTML 4.01 and HTML5

no.


grammar

<link href="URL">

Property Value

描述
URL 被链接资源/文档的 URL。

可能的值:

  • 绝对 URL - 指向另一个网站(比如 href="http://www.example.com/theme.css")
  • 相对 URL - 指向网站内的一个文件(比如 href="/themes/theme.css")


HTML link Tag Reference HTML <link> tag