The Link Element

Syntax

<link rel="stylesheet" type="text/css" href="name_of_file.css" media="all" title="style_title" />

Most types of media are not recognized by most browsers. Choices are:

all:
obvious I hope
aural:
speech synthesizers, screen readers
braille:
rendering with Braille device
embossed:
printed with a Braille device
handheld:
PDAs and web-enabled cell phones
print:
printed form
projection:
slide show projector
screen:
monitor
tty:
fixed pitch like Teletype
tv:
television

Title gives a name to the use of a specific style sheet, allows viewer to select one of a list of styles. If no title, then the style sheet is persistent and is always used. Style sheets with rel set to alternate stylesheet are called alternate style sheets. Style sheets with rel set to stylesheet are called preferred style sheets and will be used unless the viewer selects an alternate. Style sheets with the same name can be used to present the same look in different media.