STYLE
The Style Element
The Style element is inserted into the HEAD of a document with
all of the rules
placed between the opening and closing
tags. If the STYLE element is embedded directly
into a document, only that document will be affected.
However, the STYLE element does not necessarily have
to be embedded in each particular document it will be used
in. There are several methods of
combining STYLE
with your documents.
<HEAD>
<STYLE TYPE="text/css">
H1, H2, H3 { color: blue;
font-family: Arial;
}
</STYLE>
</HEAD>
Additional Resources:
HTML 4.01 Tags
|