Skip to content

Instantly share code, notes, and snippets.

@szbl
Created December 5, 2012 19:02
Show Gist options
  • Save szbl/4218524 to your computer and use it in GitHub Desktop.
Save szbl/4218524 to your computer and use it in GitHub Desktop.
Example Table Markup
<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