Created
July 18, 2013 18:23
-
-
Save rfair404/6031668 to your computer and use it in GitHub Desktop.
sample the for the startcode kids
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> | |
<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