Okay. So, the HTML to make a table is a little sideways, because you have to define the table, then the header row, then the elements inside the header row, then a new data row, and those elements, etc.
That's the basics of a 5x5 table with a header row on top. Put titles and things in the <td> tags, and you can use links HTML as well, and you can make the cover graphic clickable as a link if desired as well.
no subject
The W3Schools project has all the details, but generally, it looks like this:
<table>
<caption>Table Caption</caption>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
<th>Header 4</th>
<th>Header 5</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
That's the basics of a 5x5 table with a header row on top. Put titles and things in the <td> tags, and you can use links HTML as well, and you can make the cover graphic clickable as a link if desired as well.
Hopefully that makes sense?