hmm actually I have no idea, perhaps you can try to apply some top padding to the cells, so you can make some space for the header to be, then you need to find some way to place the "united States of America" content there, perhaps with some position: absolute trick.

<style> .td { padding-top: 45px; /* use a value that make the cells to have some blank space at the top */ } /* find a way to place the header in this space, perhaps with position absolute */ </style> <tr> <td> james bond </td> <td></td> <td></td> <td></td> </tr>