Skip to content

Instantly share code, notes, and snippets.

@heinthanth
Created August 31, 2019 11:26
Show Gist options
  • Save heinthanth/f2aeffd0929e898c39d625269fa064ad to your computer and use it in GitHub Desktop.
Save heinthanth/f2aeffd0929e898c39d625269fa064ad to your computer and use it in GitHub Desktop.
table-typical
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Typical Table Example</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Months</th>
<th>Credits</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jan</td>
<td>$500</td>
</tr>
<tr>
<td>Feb</td>
<td>$800</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Sum</td>
<td>$1300</td>
</tr>
</tfoot>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment