Skip to content

Instantly share code, notes, and snippets.

@ccasalicchio
Created October 11, 2013 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ccasalicchio/6938069 to your computer and use it in GitHub Desktop.
Save ccasalicchio/6938069 to your computer and use it in GitHub Desktop.
Html5: Raw Structure
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="keywords" content="content" />
<meta name="description" content="description" />
<meta name="robots" content="noindex, nofollow"/>
<meta name="author" content="author">
<!--CSS / JS / Favicon-->
<link rel="stylesheet" href="style/base.css">
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="icon" type="image/png" href="images/favicon.png" />
<script src="scripts/jquery-2.0.3.min.js" type="text/javascript"></script>
<script src="scripts/page.js" type="text/javascript"></script>
<title>title</title>
</head>
<body>
<header>
<nav>
nav
</nav>
</header>
<aside>
aside
</aside>
<section>
<article>
article
</article>
</section>
<footer>
&copy; footer
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment