Skip to content

Instantly share code, notes, and snippets.

@siteslave
Created October 21, 2013 07:03
Show Gist options
  • Select an option

  • Save siteslave/7079711 to your computer and use it in GitHub Desktop.

Select an option

Save siteslave/7079711 to your computer and use it in GitHub Desktop.
Hello world
<table class="table">
...
</table>
<!-- file ch2_1.html -->
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap: Table</title>
<!-- bootstrap style sheet -->
</head>
<table class="table">
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Email</th>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Satit Rianpit</td>
<td>rianpit@gmail.com</td>
</tr>
<tr>
<td>2</td>
<td>Petcharat Rianpit</td>
<td>petcharat_r@gmail.com</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment