I'm truly horrified that you would ask a question about such shoddy deprecated code as this! 
Anyhow, some browsers will center that content—with or without the doctype (such as Firefox). What browser are you testing in?
I guess you could continue with the pattern of the code you already have, and change it to this:
Code:
<table width="100%">
<tr>
<td align="center">
One<br />
Two<br />
Three<br />
Four<br />
Five<br />
</td>
</tr>
</table>
or this
Code:
<html>
<body>
<table width="100%">
<tr>
<td align="right">
Right1<br />
Right2<br />
Right3<br />
Right4<br />
Right5<br />
</td>
</tr>
<tr>
<td align="center">
One<br />
Two<br />
Three<br />
Four<br />
Five<br />
</td>
</tr>
</table>
</body>
</html>
Bookmarks