You could always try using background images, eg:
td.name {
background-image: url(images/name.gif);
background-repeat: no-repeat;
width: 100px;
height: 25px;
}
td.age {
background-image: url(images/age.gif);
background-repeat: no-repeat;
width: 80px;
}
...
<td class="name">
</td>
<td class="age">
</td>
...