Hi Diane ?? — I’m not sure how you are creating your table, but the HTML code is a bit of a mess. Basically, each piece of data needs to be in a separate table “cell” — that is between td tags. So where you have this:
<tr>
<td>Who Where based Date</td>
<td></td>
<td></td>
</tr>
<tr>
<td> <a href="https://www.wolfmagazine.co.uk/">
</a></td>
<td></td>
<td></td>
</tr>
It should be like this — some of the data below is only as an example — as you were missing some pieces.
<tr>
<td>Who</td>
<td>Where based</td>
<td>Date</td>
</tr>
<tr>
<td> <a href="https://www.wolfmagazine.co.uk/"></a></td>
<td>US</td>
<td>Dec. 2001</td>
</tr>
Don’t use multiple spaces or tabs in the cells. If you have empty cells — i.e. you don’t have data to put in there, use ?
(non-breaking space code) which keeps the table formatting correct.
Hope that helps…