HTML comment aligner deux tables en une seule ligne?

Comment aligner deux tables dans une ligne, dans le milieu de la page?
Les résultats que je veux voir:

                                11 12   11 12
                                21 22   21 22

Le résultat que j'obtiens:

11 12
21 22
11 12
21 22
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td>11</td>
    <td>12</td>
  </tr>
  <tr>
    <td>21</td>
    <td>22</td>
  </tr>
</table>
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td>11</td>
    <td>12</td>
  </tr>
  <tr>
    <td>21</td>
    <td>22</td>
  </tr>
</table>

OriginalL'auteur user1942505 | 2013-01-11