Last active
January 3, 2016 04:49
-
-
Save nextechu/8412012 to your computer and use it in GitHub Desktop.
Skeleton of HTML5 code.
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"> | |
<head> | |
<title>Part 3</title> | |
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> | |
</head> | |
<body> | |
<header>masthead | |
</header> | |
<nav><ul><li>Nav1</li><li>Nav2</li><li>About</li></ul> | |
</nav> | |
<article id="container"> | |
<aside> | |
aside | |
</aside> | |
<section> | |
section 1 | |
</section> | |
<section> | |
section 2 | |
</section> | |
</article> | |
<footer> | |
footer | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment