Created
August 11, 2018 03:43
-
-
Save tuyendq/e652f7e920f320f96a9fb3cc94b474a0 to your computer and use it in GitHub Desktop.
HTML5 Table Template
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> | |
<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