Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Last active April 16, 2021 06:42
Show Gist options
  • Save wpweb101/c3115b81ac40e16b34f6fc0eb8db811e to your computer and use it in GitHub Desktop.
Save wpweb101/c3115b81ac40e16b34f6fc0eb8db811e to your computer and use it in GitHub Desktop.
HTML Best Practices
<html>
<head>
<title>Page Title</title>
<meta charset="utf-8" />
</head>
<body>
<table>
<tr>
<td colspan="2">Example 1</td>
<td colspan="2">Example 2</td>
</tr>
</table>
<br/>
<hr/>
<table>
<tr>
<td colspan="2">Example 1</td>
<td colspan="2">Example 2</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment