Tables
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Foo 1 | Foo 2 | Foo 3 |
| Bar 1 | Bar 2 | Bar 3 |
<table class="table">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Foo 1</td>
<td>Foo 2</td>
<td>Foo 3</td>
</tr>
...
</tbody>
</table>