Skip to content

Instantly share code, notes, and snippets.

@rfair404
Created July 18, 2013 18:23
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 rfair404/6031668 to your computer and use it in GitHub Desktop.
Save rfair404/6031668 to your computer and use it in GitHub Desktop.
sample the for the startcode kids
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Learning HTML5 at START:CODE Summer Camp</title>
<meta name="description" content="A Basic Webpage Template for Learning HTML5">
<meta name="author" content="Put Your Name Here">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="js/jquery-2.0.3.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/script.js?v=1.0"></script>
<link rel="stylesheet" href="css/style.css?v=1.0">
</head>
<body class="homepage">
<header id="top" class="fullwidth">
<h1>My Name is Russell</h1>
</header>
<section id="main" class="fullwidth">
<div id="content">
<h3>About Me</h3>
<p>I'm a 30 year old web developer with 2 kids and 2 dogs. I like to spend time outdoors, especially if I'm on the water.
</div>
<div id="sidebar">
<nav>
<a href="http://github.com/rfair404" title="follow me on github">Russell Fair on Github</a>
</nav>
</div>
</section>
<footer id="bottom" class="fullwidth">
A <a href="http://startcode.net" title="Start Code">StartCode.net</a> creation.
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment