The W3schools is my favorite CSS learning resource, however it is extremely simple, so I can teach you the basics. First of all I recommend that you link to a stylesheet on your website, this saves you lots of time, to link to a stylesheet use this code:
CODE
<link rel="stylesheet" type="text/css" href="stylesheetname.css" />
Now to work on that stylesheet, CSS has an extremely simple syntax:
CODE
selector {property: value}
The selector is the name of that part of the stylesheet for instance, body. The property is what attribute you want to change, and the value is how you change it, for example:
CODE
body {color: #CCCCCC}
What I just did was make the body font color grey. Link the stylesheet to the HTML document, as shown above, and the font color will be grey, unless otherwise specified.
You can view a full tutorial on CSS at my website's HTML tutorial section www.webmasterforum.buildtolearn.net/index/htmltutorials.html also.
Reply