Created
January 11, 2014 08:53
-
-
Save DeanPoulin/8368573 to your computer and use it in GitHub Desktop.
Basic Table
This file contains hidden or 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"> | |
| <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