style element

Type:Heading Tags
Attributes:
See:head link

The style tag specifies a CSS style sheet. It must be placed within the head of the document.

Stylesheets here differ from those used in HTML in a few important ways.

External stylesheets are linked via the link element.

These are some of the styles defined in the default stylesheet

<style>
b     { font-weight:bold }
i     { font-style:italic }
u     { text-decoration:underline }
o     { font-style:outline; outline-width:0.5 }
tt    { font:Courier }
</style>