meglio se parti da qui:

CSS:
codice:
body { background:green; }
h1 { text-align:center; }
table#tabella { margin:auto; width:80px; height:80px; background:yellow; }

HTML
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html> 

<head>
<title> Tabelle prova </title>
<link rel="stylesheet" type="text/css" href="css.css" media="screen" > 
</head>

<body>
<h1> Tabella </h1>

<table id="tabella" cellpadding="0" cellspacing="0" border="2" >
    <tr>
        <td>
        testo
        </td>
    </tr>                
</table>

</body>        
</html>
ricorda che la scelta del DTD non è casuale: dichiara COME scriverai il codice nella pagina.
ma questo argomento lo affrontiamo un'altra volta.

dovresti ripassarti le guide di base