Last active
April 16, 2021 06:42
-
-
Save wpweb101/c3115b81ac40e16b34f6fc0eb8db811e to your computer and use it in GitHub Desktop.
HTML Best Practices
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>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