Last active
September 18, 2017 20:41
-
-
Save Meshiest/54b0e2124e31bf7260a5b58c221d858b to your computer and use it in GitHub Desktop.
In class assignment 1
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 lang="en-US"> | |
<head> | |
<title>Magical Table</title> | |
</head> | |
<body> | |
<table border="1"> | |
<tr> | |
<td rowspan="2"> | |
<a href="#">Link</a> | |
</td> | |
<td colspan="2"> | |
<b>Bold</b> | |
</td> | |
</tr> | |
<tr i_know_you_copied_this="lol"> | |
<td> | |
<img src="https://media.giphy.com/media/26ufdipQqU2lhNA4g/giphy.gif"/> | |
</td> | |
<td rowspan="2"> | |
<i>Italic</i> | |
</td> | |
</tr> | |
<tr> | |
<td colspan="2"> | |
<u>Underline</u> | |
</td> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment