Skip to content

Instantly share code, notes, and snippets.

@2hamed
Last active December 16, 2015 00:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 2hamed/5345887 to your computer and use it in GitHub Desktop.
Save 2hamed/5345887 to your computer and use it in GitHub Desktop.
My very own html5 template boilerplate.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header class="main-header">
<figure class="logo">
<h1><!-- logo goes here --></h1>
</figure>
<nav class="main-nav"><!-- for navigation menus --></nav><!--.main-nav-->
</header><!--.main-header-->
<section class="content">
</section><!--.content-->
<aside class="sidebar">
</aside><!--.sidebar-->
<footer class="main-footer">
</footer><!--.main-footer-->
</div><!--.wrapper-->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment