Created
February 28, 2019 22:26
-
-
Save kostasx/3c8c5fa9bee0047f0c7fb18baf50d4bf to your computer and use it in GitHub Desktop.
EventLoop | AfDEMP 4.2 Class Exercise 10
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> | |
<tr> | |
<td colspan="3">Title goes here</td> | |
<td>A</td> | |
<td>B</td> | |
</tr> | |
<tr> | |
<td rowspan="3">C</td> | |
<td>D</td> | |
<td>E</td> | |
<td>F</td> | |
<td>G</td> | |
</tr> | |
<tr> | |
<td>H</td> | |
<td colspan="2">I</td> | |
<td rowspan="2">J</td> | |
</tr> | |
<tr> | |
<td>K</td> | |
<td>L</td> | |
<td>M</td> | |
</tr> | |
<tr> | |
<td>N</td> | |
<td colspan="4">O</td> | |
</tr> | |
</table> |
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 { | |
border: 1px solid black; | |
font-size: 2em; | |
} | |
td { | |
border: 1px solid black; | |
padding: 8px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment