silveradept: A kodama with a trombone. The trombone is playing music, even though it is held in a rest position (0)
Silver Adept ([personal profile] silveradept) wrote in [personal profile] tjs_whatnot 2025-01-26 07:21 pm (UTC)

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.

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?

Post a comment in response:

This account has disabled anonymous posting.
If you don't have an account you can create one now.
HTML doesn't work in the subject.
More info about formatting