<HTML>
<HEAD>
<TITLE>Headings</TITLE>
<style>
<!--
body {text-color:#000080}
h1 {font-size:36;}
h1.new {font-size:18pt;
font-family:Times New Roman, Times, serif;
color:#800080;
text-align:center;
background:#00FFFF}
h1.newer {font-size:20pt;
font-family:Harrington, serif;
color:#800000;
text-align:right}
h1.newest{ font-size:12pt;
font-family:Comic Sans MS, sans-serif;
color:#FF00FF;
text-align:left}
.inicap {font-size:20pt}
//-->
</style>
</HEAD>
<BODY>
<span class=inicap>U</span>sing stylesheets
you can create several styles for each heading type.
<br>You can set all the font and alignment properties
for each style.
<hr>
<h1>Just H1, as styled</h1>
<h1 class=new>H1.new</h1>
<h1 class=newer>H1.newer</h1>
<h1 class=newest>H1.newest</h1>
</BODY>
</HTML>