Created
December 5, 2012 19:02
-
-
Save szbl/4218524 to your computer and use it in GitHub Desktop.
Example Table Markup
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 id="optional-unique-id" class="content-table"> | |
<thead> | |
<tr> | |
<th>Heading 1</th> | |
<th>Heading 2</th> | |
<th>Heading 2</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>Cell 1,1</td> | |
<td>Cell 1,2</td> | |
<td>Cell 1,3</td> | |
</tr> | |
<tr> | |
<td>Cell 2,1</td> | |
<td>Cell 2,2</td> | |
<td>Cell 2,3</td> | |
</tr> | |
</tbody> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment