<STYLE>
The <STYLE> Tag is used for Style Sheets.
The TYPE and TITLE commands can be used. TYPE is used to specify the Internet media
(MIME) type of the style sheet definition, which is "text/css". TITLE can be used
to provide a title for the Style Sheet
definitions. This may be used by browsers when a choice of Style Sheets are available.

<head><title>Night of the Living
Dead</title>
<style type="text/css" title="colors">
body { color : brown}
p { color : black; font-size : 18pt; font-family : Arial}
h1 { color : green; font-size : 12pt}
</style>
</head>
This defines the styles that are specified to be a Style Sheet, having the title
"Colors".
Learn about this and more in the Style Sheets section!
|