Element "align" is obsolete or non-standard: what should I use instead?
That would be something like:
<td style="text-align: center;">
But it would be even better to move that style out of the html and put it in a separate style-sheet.
You should use text-align
in CSS rather than using the obsolete html styling attributes.
td{
text-align:center;
}