Skip to content

Instantly share code, notes, and snippets.

@tuyendq
Created August 11, 2018 03:43
Show Gist options
  • Save tuyendq/e652f7e920f320f96a9fb3cc94b474a0 to your computer and use it in GitHub Desktop.
Save tuyendq/e652f7e920f320f96a9fb3cc94b474a0 to your computer and use it in GitHub Desktop.
HTML5 Table Template
<table>
<caption style="caption-side:bottom;" >Caption here</caption>
<thead>
<tr>
<th>Header1</th>
<th>Header2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Column1</td>
<td>Column2</td>
</tr>
</tbody>
<tfoot>Footer here</tfoot>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment