I shouldn't post before morning coffee. lol
This is the problem. You have an opening comment tag at the beginning of your stylesheet but you didn't close it so the whole page is inside of a comment tag.
<style type="text/css">
<!-- H1 {word-spacing:.5em; font: normal 1 "Veranda, Arial"}
a:link {text-decoration: none;}
a:active {text-decoration: none;}
a:visited {text-decoration: none;}
A:hover {text-decoration:overline & underline; color: #FF0000;}
</style>
Should be
<style type="text/css">
<!-- H1 {word-spacing:.5em; font: normal 1 "Veranda, Arial"}
a:link {text-decoration: none;}
a:active {text-decoration: none;}
a:visited {text-decoration: none;}
A:hover {text-decoration:overline & underline; color: #FF0000;}
-->
</style>
Notice the --> right before the closing style tag.
|