Skip to content

Instantly share code, notes, and snippets.

@DeanPoulin
Created January 11, 2014 08:53
Show Gist options
  • Select an option

  • Save DeanPoulin/8368573 to your computer and use it in GitHub Desktop.

Select an option

Save DeanPoulin/8368573 to your computer and use it in GitHub Desktop.
Basic Table
<table class="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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment