Here's an example style definition for the <H3> tag.
Anything in <H3> tags will be styled accordingly in the document
As the code indicates, it belongs in the header, before the body of the document
Note: You'll need an advanced browser like Netscape Communicator to do this.
<HEAD> <STYLE type="text/css">
<!-- h3 { font-family: Arial; font-style: italic; color: yellow } -->
</STYLE> </HEAD>
Below this line is some stuff formatted with the <H3> tag:
This is a yellow, italic, Arial H3 header.
So is this.
<HEAD> <LINK rel="stylesheet" type="text/css" href="basic.css" title="style1"> </HEAD>
The above code, if placed in the header, will link in a style-sheet definition file
Simply add the code we used previously in our header to the file "basic.ccs"
More
on style sheet