...by side in the same table? I'm not sure how to do it. I got it done but it seems tedious and messy and I'd assume there is a better way. What I wrote was:
<table border=1>
<thead>
<th>Unordered List</th>
<th>Ordered List</th>

<tr>
<td><ul><li>An item</td></ul>
<td><ol><li>First item</td></ol>
</tr>

<tr>
<td><ul><li>Another item</td></ul>
<td><ol start="2"><li>Second item</td></ol>
</tr>

<tr>
<td><ul><li>Yet Another item</td></ul>
<td><ol start="3"><li>Third item</td></ol>
</tr>


</table>

is there any better way to do this?

thanks in advance