LocXar: html code centrieren

Beitrag lesen

Ich wollte diesen HTML code zentriert haben nur ich weis nicht wo ich alias="center" einfügen muss bis jetzt habe ich nur die überschrift zentriert bekommen. schonmal danke im voraus.

HTML:
_________________________________________________
<html>
<body background="file:///C:\Dokumente und Einstellungen\Administrator\Desktop\Site\auswahlmenue\Char\back.jpg">
<form method="post" action="newacc.php">
<div style="text-align: center"><b>Mach dir einen Account auf Rookgaard.</b></div>
<table cellspacing="0" width="100%">
 <tr><td width="20%">Account:</td>
  <td><?
$account = rand(100000, 999999);
print '' . $account . ' <input type="hidden" name="account" value="' . $account . '">' . "\n";
  ?></td>
 </tr>

<tr>
  <td width="20%">Name:</td>
  <td><input type="text" name="nick" maxlength="20" /> <span class="copy">3-20 Buchstaben</span></td>
 </tr>  <tr>
  <td width="20%">Passwort: </td>
  <td><input type="password" name="pass" maxlength="10"> <span>3-10 Buchstaben</span></td>
 <tr>

<tr>
  <td width="20%">Geschlecht:</td>
  <td>
   <input type="radio" name="sex" value="1" checked> Mann
   <input type="radio" name="sex" value="0"> Frau
  </td>
 </tr>

<tr>
  <td colspan="2">
   <input type="submit" value="Erstellen">&nbsp;
   <input type="reset" value="Neu">
  </td>
 </tr>
</table>
</form>
</div>
</body>
</html>
_________________________________________________
:HTML