Si !
![sonriente](http://static.forosdelweb.com/fdwtheme/images/smilies/smile.png)
unclosed start-tag requires SHORTTAG YES
Cita: <TD COLSPAN="10" HEIGTH="80"> <IMG SRC="maintitle.jpg"style="heigth:80px; width:800px;" ALT="">
</TD>
B] unclosed start-tag requires SHORTTAG YES[/b]
<TD> <A class="titularindice"HREF="noticia.html">Ejemplo</A> </TD>
En rojo los cierre de etiqutas que te faltan.
Y el otro error de TR es porque no tenes ningún TD en un TR.
Aca te dejo una tabla con todas las variantes, que pasa correctamente la validación:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
<style type="text/css">
<!--
.mytable {
height: 500px;
width: 500px;
background-color:#000000;
border: #0066FF thin solid;
}
-->
</style>
</head>
<body>
<table align="center" cellpadding="5" cellspacing="5" class="mytable">
<tr>
<td width="50" bgcolor="#666666"> </td>
<td width="250" height="100" bgcolor="#666666"> </td>
<td width="200" bgcolor="#666666"> </td>
</tr>
<tr>
<td bgcolor="#999999"> </td>
<td bgcolor="#999999"> </td>
<td bgcolor="#999999"> </td>
</tr>
<tr>
<td bgcolor="#CCCCCC"> </td>
<td colspan="2" bgcolor="#CCCCCC"> </td>
</tr>
</table>
</body>
</html>
No es muy aconsejable mezclar CSS con atributos HTML, pero para que quede bien mientras te acostumbras y aprendes a usar CSS va bien