The Sandbox

I also discovered html tables work. :+1:

<table> - table
<th> - table header
<tr> - table row
<td> - table data (cell)

Example

<table>
<tr><th>Column 1</th><th>Column 2</th><th>Column 3</th></tr>
<tr><td>Monkey</td><td>Potato</td><td>Blue</td></tr>
<tr><td>Lion</td><td>Carrot</td><td>Green</td></tr>
<tr><td>Tiger</td><td>Parsnip</td><td>Red</td></tr>
</table>
Column 1 Column 2 Column 3
Monkey Potato Blue
Lion Carrot Green
Tiger Parsnip Red

And with a html table you can insert a hide details, and stuff like that too. :+1:

Column 1 Column 2 Column 3
Monkey Potato Blue
Lion Carrot Green
Tiger
Parsnip Roasted please
Red
1 Like