LINK Tag
What It Does:
The LINK tag provides a reference to files containing other resources for the page. The most common use is to apply an external style sheet.
The Syntax:
<link type='text/css' rel='stylesheet' href='path/to/style/file.css' />
- LINK is the name of the tag, and it is self-closing.
- TYPE is the mime-type attribute.
- REL is the relationship between the resource and this document.
- HREF is the hypertext reference (path and filename) to the resource.