are you trying to achive to get everything centered?
Also, the <font> tag is almost obsolete, alsmost not used anymore. I see you are still learning. Reading up on Divs can help alot. It also helps to break your code into parts, not having it on one line. "Tabbing" your code is also helpfull. Say you have a table tag. Everything in it would be tabbed in to the end.
Code:
<table align="center" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
Hello!
</td>
</tr>
</table>
Anything inside something can be tabbed. this also helps having your close tags in line. i usually have the <table> tag, press enter/return then type the end tag, </table>, then go in between them and put the rest. this ensures that everything is correctly closed.
http://www.battlegear.org/1JackAssBo....com/index.php
you can view the source of this page to see what I mean about tabbing and divs.
Sorry for this huge post, and if it didn't help, that's alright. Im still here =D