<link>

Link exterior documents to your websight. Keep code neat and clean linking other elements to your site. Use a seperate link tag for each link

Attribute Description
class Classify or name your elements. For instance, if you classify several paragraph elements the same name, using CSS it is possible to give them all the same styles in one line of code.
dir Change the display of text from left to right, or right to left. Very useful in language translation.
lang Define the language to display your element in. Here's a link to the abbreviations of languages. http://www.oasis-open.org/cover/iso639a.html
href Specify a url for your elements. Use a local URL or an internet URL.
rel Defines a relationship of one element to another.
style Used to create inline styles such as CSS.
title Places a "pop-up" title for an element upon mouse over. Similar to "help" pop-ups in word programs.
type Sets the type of element, several variations of types can be set for nearly all elements.

Code:

<link rel="stylesheet" type="text/css"
href="url/your.css" />The above code links a CSS stylesheet to an HTML document.

Display:

The above code links a CSS stylesheet to an HTML document.

Closing Tag Information:

This tag does not require a closing tag.