Skip to content

Instantly share code, notes, and snippets.

@plavet
Created August 1, 2012 01:33
Show Gist options
  • Save plavet/3222472 to your computer and use it in GitHub Desktop.
Save plavet/3222472 to your computer and use it in GitHub Desktop.
HTML5 - Start
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="keywords" content="key, words">
<meta name="description" content="description">
<link rel="stylesheet" href="stylesheet.css">
<link rel="alternate" title="Website Feed" href="rss.php" type="application/rss+xml">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<title>Title</title>
</head>
<body>
<header id="branding"><!-- page header -->
<h1>Site name</h1>
</header>
<nav>
<ul><li>Main navigation</li></ul>
</nav>
<div id="content"> <!-- wrapper for CSS styling -->
<article><!-- main content -->
<header>
<h1>Article title</h1>
<p>Article metadata</p>
</header>
<p>Article content…</p>
<footer>Article footer</footer>
</article>
<aside id="sidebar"><!-- sidebar -->
<h3>Sidebar title</h3>
<p>Sidebar content</p>
</aside>
</div>
<footer id="footer">Footer</footer><!-- page footer -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment