Intro to CSS
CSS is a very cool language to learn and getting the basics down is pretty easy. It is more custom than HTML and can save you a lot of time. You put the code at the beginning of your page.
Here's something in css that's fairly basic.
But, GAH!, what does all that mean? Let's break it down. <style> and </style> tell the computer that you're going to give it some CSS. That part is like HTML.
Then it says td, p, body. That's saying, 'use the css I give you for only these parts.' td is a table column, p can be used to align something or make a page break, and body is usually a tag at the beginning of the page. So everything on the page that is within the td, p, or body tags will have the css.
Next, it has a starting brace { and an ending one }. Inside the braces are the actual commands. Color: black makes the text black, font: 11px makes the text size 11, and verdana is the font face.
CSS can be easy if you break it all up. :)

