New! My 44-page ebook "CSS in 44 minutes" is out! 😃
# link
Defines a link between the current web page and an external link or resource.
Example: Copy
href
Defines the URL of the link.
"https://htmlreference.io/css/website.css"
You can pass an absolute URL.
"/css/website.css"
You can pass a URL relative to the root domain.
rel
Defines a link type, explaining how the link relates to the current web page.
"stylesheet"
The link is a stylesheet.
"icon"
The link is a favicon.
"author"
The link is the web page's author website.
"next"
The link is the next page.
type
Defines the type of the linked resource.
"text/css"
The link is a CSS file.
"text/html"
The link is an HTML document.