Created
October 21, 2013 07:03
-
-
Save siteslave/7079711 to your computer and use it in GitHub Desktop.
Hello world
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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>[email protected]</td> | |
</tr> | |
<tr> | |
<td>2</td> | |
<td>Petcharat Rianpit</td> | |
<td>[email protected]</td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment