Skip to content

Instantly share code, notes, and snippets.

@aamnah
Forked from morrxy/gist:7542124
Last active December 23, 2016 10:12
Show Gist options
  • Save aamnah/d7d4accc1c7c1ca9e5f01cce76187b84 to your computer and use it in GitHub Desktop.
Save aamnah/d7d4accc1c7c1ca9e5f01cce76187b84 to your computer and use it in GitHub Desktop.
Table HTML
<table>
<caption>Awesome caption</caption>
<thead>
<tr>
<th></th>
<th>million km</th>
<th>m</th>
</tr>
</thead>
<tbody>
<tr>
<th>Arctic</th>
<td>13,000</td>
<td>1,200</td>
</tr>
<tr>
<th>Atlantic</th>
<td>87,000</td>
<td>3,900</td>
</tr>
<tr>
<th>Pacific</th>
<td>180,000</td>
<td>4,000</td>
</tr>
<tr>
<th>Indian</th>
<td>75,000</td>
<td>3,900</td>
</tr>
<tr>
<th>Southern</th>
<td>20,000</td>
<td>4,500</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Total</th>
<td>361,000</td>
<td></td>
</tr>
<tr>
<th>Mean</th>
<td>72,000</td>
<td>3,800</td>
</tr>
</tfoot>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment