Last active
January 5, 2017 14:42
-
-
Save thaenor/1b60028e6024f3441c312de225ed9c66 to your computer and use it in GitHub Desktop.
Propper html5 template according to http://html5doctor.com/avoiding-common-html5-mistakes/
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
<body> | |
<header> | |
<h1>My super duper page</h1> | |
<!-- Header content --> | |
</header> | |
<div role="main"> | |
<!-- Page content --> | |
</div> | |
<aside role="complementary"> | |
<!-- Secondary content --> | |
</aside> | |
<footer> | |
<!-- Footer content --> | |
</footer> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment