Skip to content

Instantly share code, notes, and snippets.

@Meshiest
Last active September 18, 2017 20:41
Show Gist options
  • Save Meshiest/54b0e2124e31bf7260a5b58c221d858b to your computer and use it in GitHub Desktop.
Save Meshiest/54b0e2124e31bf7260a5b58c221d858b to your computer and use it in GitHub Desktop.
In class assignment 1
<!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