Last active
November 2, 2019 22:22
-
-
Save profstein/6eccac33f6bf6c276a770d4f4bc512c7 to your computer and use it in GitHub Desktop.
Simple HTML
This file contains 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> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<title>Change to Your Title</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body> | |
<header class="site-header"> | |
<!-- add site wide header content here --> | |
</header> | |
<main id="main"> | |
<!-- add main page content here --> | |
</main> | |
<footer class="site-footer"> | |
<!-- add site-wide footer content here --> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment