# | First Name | Last Name | Username |
---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | Bird | @twitter |
[table cols="#;First Name;Last Name;Username" data="1;Mark;Otto;@mdo;2;Jacob;Thornton;@fat" separator=";" /]
...or in HTML
<table>
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
# | First Name | Last Name | Username |
---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | Bird | @twitter |
[table class="table-bordered" cols="#;First Name;Last Name;Username" data="1;Mark;Otto;@mdo;2;Jacob;Thornton;@fat" separator=";" /]
...or in HTML
<table class="table-bordered">
...
</table>