Created
August 10, 2018 21:49
-
-
Save riyaadazad/f410ee736ac74e744e3076288c091e14 to your computer and use it in GitHub Desktop.
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
<html> | |
<head> | |
<title>Table Time</title> | |
</head> | |
<body> | |
<table border="1px"> | |
<thead> | |
<tr> | |
<th colspan="2">Famous Monsters by Birth Year</th> | |
</tr> | |
<tr> | |
<th>Famous Monster</th> | |
<th>Birth Year</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>King Kong</td> | |
<td>1933</td> | |
</tr> | |
<tr> | |
<td>Dracula</td> | |
<td>1897</td> | |
</tr> | |
<tr> | |
<td>Bride of Frankenstein</td> | |
<td>1935</td> | |
</tr> | |
</tbody> | |
</table> | |
<table style="border-collapse:collapse;"> | |
<thead> | |
<tr> | |
<th colspan="2">Famous Monsters by Birth Year</th> | |
</tr> | |
<tr style="border-bottom:1px solid black;"> | |
<th style="padding:5px;">Famous Monster</th> | |
<th style="padding:5px;border-left:1px solid black;">Birth Year</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td style="padding:5px;">King Kong</td> | |
<td style="padding:5px;border-left:1px solid black;">1933</td> | |
</tr> | |
<tr> | |
<td style="padding:5px;">Dracula</td> | |
<td style="padding:5px;border-left:1px solid black;">1897</td> | |
</tr> | |
<tr> | |
<td style="padding:5px;">Bride of Frankenstein</td> | |
<td style="padding:5px;border-left:1px solid black;">1944</td> | |
</tr> | |
</tbody> | |
</table> | |
<table style="border-collapse:collapse;"> | |
<thead> | |
<tr> | |
<th colspan="2" style="color:red">Famous Monsters by Birth Year</th> | |
</tr> | |
<tr style="border-bottom:1px solid black;"> | |
<th style="padding:5px;"><em>Famous Monster</em></th> | |
<th style="padding:5px;border-left:1px solid black;"><em>Birth Year</em></th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td style="padding:5px;">King Kong</td> | |
<td style="padding:5px;border-left:1px solid black;">1933</td> | |
</tr> | |
<tr> | |
<td style="padding:5px;">Dracula</td> | |
<td style="padding:5px;border-left:1px solid black;">1897</td> | |
</tr> | |
<tr> | |
<td style="padding:5px;">Bride of Frankenstein</td> | |
<td style="padding:5px;border-left:1px solid black;">1944</td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment