Skip to content

Instantly share code, notes, and snippets.

@kaleb
Created April 5, 2011 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaleb/904415 to your computer and use it in GitHub Desktop.
Save kaleb/904415 to your computer and use it in GitHub Desktop.
HTML 5 Table Example
<!DOCTYPE html>
<title>HTML 5 Table Example</title>
<table>
<caption>This is a table</caption>
<thead>
<tr>
<th>number
<th>value
<tfoot>
<tr>
<td colspan=2><i>fin</i>
<tbody>
<tr>
<td>&pi;
<td>3.14
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment