Come ti hanno detto, aggiungi un Doctype, aggiungi i tag che mancano, html head title. Via la tabella e al suo posto un div:

codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Titolo</title>

<style type="text/css">

body {background-color:#dddddd;}

#container {width:980px; margin 0 auto;}

</style>

</head>


<body>
<div id="container">
   codice object
</div>
		

</body>
</html>