Tables for layout are not compliant anymore. What you would do, is create a div...your code could look like this:
Type your paragraph in here
then your css could look like this for example:
#content {
width: 600px;
text-algin: left;
background-color:#FFFFFF;
font: arial 12px #CC0000;
border: 1px solid #CC0000;
padding: 6px;
}
Hope that helps! :) And if your using Firefox, it helps to get the developer tool bar, and Firebug. I learned a lot this way.
Never use tables...tables should only be used for tabular data, like for product spec sheets and stuff....
If you need help learning HTML and CSS more, there are a TON of resources out there, and if your in the web design biz, or plan on doing a lot w/ the web, it really helps to understand the coding aspect...or you will just find it harder and harder.
http://www.w3schools is a great start.
* you can put your css in a tag in the header of your doc, but better yet, if its a larger site, I suggest linking to an external CSS style sheet.