Table Styles
Company | Header 1 | Header 2 | Header 3 | Header 4 |
---|---|---|---|---|
The foot text for this table | ||||
Company 1 | Division | Division | Division | Division |
Company 2 | Division | Division | Division | Division |
Company 3 | Division | Division | Division | Division |
Company 4 | Division | Division | Division | Division |
[styled_table]
<table>
<thead>
<tr>
<th scope="col"><strong>Company</strong></th>
<th scope="col">Header 1</th>
<th scope="col">Header 2</th>
<th scope="col">Header 3</th>
<th scope="col">Header 4</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="5"><em>The foot text for this table</em></td>
</tr>
</tfoot>
<tr>
<td>Company 1</td>
<td>Division</td>
<td>Division</td>
<td>Division</td>
<td>Division</td>
</tr>
</table>
[/styled_table]