-
-
Save aamnah/d7d4accc1c7c1ca9e5f01cce76187b84 to your computer and use it in GitHub Desktop.
Table HTML
This file contains hidden or 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>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