Cascading Style Sheets
Defining your own styles

Example HTML...
<style type="text/css">
.monkey {
 background-color: black;
 color: yellow;
 font-family: Helvitica, sans-serif;
}

.moose {
 background-color: green;
 color: white;
 font-family: Courier, sans-serif;
}

</style>

<TABLE BORDER=1 CELLPADDING=10>
 <TR>
   <TD CLASS="monkey">I like Monki</TD>
   <TD CLASS="moose">I like Meese</TD>
 </TR>
</TABLE>

Example Results...
I like Monki I like Meese

< prev | home | next>
All Materials ©2003-2007 Zach Berke