<!--
// font-family - denotes font
// font-size - denotes the size of the text
// font-style - denotes the style of the text
// font-weight - denotes the weights of the text
// letter-spacing - denotes the space between letters
// word-spacing - denotes the space between words
// color - denotes the color of the text
// text-transform - denotes the transformation of the text
// text-align - specifies the alignment of the text
// text-decorate - denotes the text's decoration
// text-indent - denotes margins
// What kind of HTML tags can you use style sheets with?
// Basically, you can use almost every single tag for your style sheets, but the most // popular are: 
// H1, H2, H3, H4, H5, H6
// P
// BODY
// DIV 
-->

<STYLE type="text/css">
<!--
   BODY { font-family: TimesRoman; font-size: 14px; color: #800080; background-color: #FFFFBB; }
   H1 { font-family: TimesRoman; font-style: bold; font-size: 35px; }
   H2 { font-family: TimesRoman; font-style: bold; font-size: 25px; }
   H3 { font-family: TimesRoman; font-style: bold; font-size: 20px; }
   H4 { font-family: TimesRoman; font-size: 16px; }
   H5 { font-family: TimesRoman; font-size: 12px; }
   H6 { font-family: TimesRoman; font-size: 10px; }
   P { font-family: TimesRoman; font-size: 12px; }
   TABLE { font-family: TimesRoman; font-size: 12px; }
   A:Link      { text-decoration: none; color: #800080; }
   A:Active   { text-decoration: none; color: #FF8000; }
   A:Visited  { text-decoration: none; color: #800080; }
   A:Hover   { text-decoration: underline; color: red; font-style: bold; }      
-->
</STYLE>