You are here: irt.org | FAQ | CSS | Q5403 [ previous next ]
The following code will make the H1-tag in your HTML-document blue:
<HTML>
<TITLE>CSS FAQ</TITLE>
<STYLE type="text/css">
H1 { color: blue }
</STYLE>
<BODY>
<H1>The CSS FAQ</H1>
</BODY>
</HTML>