Created
August 31, 2019 11:26
-
-
Save heinthanth/f2aeffd0929e898c39d625269fa064ad to your computer and use it in GitHub Desktop.
table-typical
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
<!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