Simple Table For HTML ? code example
Example: html table
<table>
<thead>
<tr>
<th>Item 1-1</th>
<th>Item 1-2</th>
<th>Item 1-3</th>
</tr>
</thead>
<tbody>
<tr>
<th>Item 2-1</th>
<th>Item 2-2</th>
<th>Item 2-3</th>
</tr>
</tbody>
</table>