That is not the code showing up in the page. This is the code in your page source:
HTML Code:
<!-- custom block start -->
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="200px">
<tbody>
<tr>
<td class="tcat">
<!-- title start -->
Select an Anime Series
<!-- title end -->
</td>
</tr>
<tr>
<td class="alt2">
<!-- code start -->
Add your code here
<!-- code end -->
</td>
</tr>
</tbody>
<br />
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="200px">
<tbody>
<tr>
<td class="tcat">
<!-- title start -->
Select an Anime Series
<!-- title end -->
</td>
</tr>
<tr>
<td class="alt2">
<!-- code start -->
Add your code here
<!-- code end -->
</td>
</tr>
</tbody>
</table>
<br /><!-- custom block end -->
For some reason, I thought they were in two rows (perhaps because you have incorrect html - you didn't close the first table), but what you have are two separate tables (except, as I said, you didn't close the first one). So, you might want to put them each in a column in another table.
HTML Code:
<table><tr>
<td> one block here </td>
<td> another block here </td>
</tr></table>