Code

[code]
[table]
<table>

</table>
[/table]
[/code]

Example

[table]

First Name Last Name Email Address Website
The footer text for this table
John Smith johnsmith@example.com http://www.example.com
Peter James peterjames@example.com http://www.example.com
Ronald Weeley ronweeley@example.com http://www.example.com

[/table]

[toggle title=”Get Code”]
[code]
[table]
<table>
<thead>
<th>First Name</th>
<th>Last Name</th>
<th>Email Address</th>
<th>Website</th>
</thead>
<tfoot>
<tr>
<td colspan=”4″><em>The foot text for this table</em></td>
</tr>
</tfoot>
<tbody>
<tr>
<td>John</td>
<td>Smith</td>
<td>johnsmith@example.com</td>
<td>http://www.example.com</td>
</tr>
<tr>
<td>Peter</td>
<td>James</td>
<td>peterjames@example.com</td>
<td>http://www.example.com</td>
</tr>
<tr>
<td>Ronald</td>
<td>Weeley</td>
<td>ronweeley@example.com</td>
<td>http://www.example.com</td>
</tr>
</tbody>
</table>
[/table]
[/code]
[/toggle]