QUOTE(minidiapolis @ Oct 19 2006, 01:40 AM)

I'm sorry, I'm relatively new to CSS. I did some practice pages and sometimes I would forget the quotes and it worked okay. What is the rule for using quotes?
This part is actually HTML. 'style' is a HTML attribute. Its value is CSS though. Does that make sense?
HTML attribute values need to be quoted with some exceptions. I think it's good practice to always quote even if it isn't necessary. If nothing else it's more consistent. In this case you have to quote because the value contains both spaces and funky characters. You can read the rules here.
http://www.htmlhelp.com/reference/html40/s...html#attributesQUOTE
Also, in the same section I put it in a <span></span> because I thought it forces that section to stay together but on the page why is there a space?
I don't understand what you mean, but I'm sure SPAN won't do it. Hold together how? Also, SPAN is an
inline element and you have nested a P that is a block level element inside it. You can't do that (read the page I linked to). You also have half a list in there. You can't use list items, LI, on their own. They must be contained in a wrapper element that tells what kind of list it is, UL or OL.
http://www.htmlhelp.com/reference/html40/lists/li.htmlA basic unordered list looks like this and it can't be in a SPAN.
CODE
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
The validator helps you with those things. It can be scary at first, but take the errors one by one, follow the links and read about the different elements and you'll soon get the hang of it.
http://www.htmlhelp.com/tools/validator/