Skip to content

Instantly share code, notes, and snippets.

@justinallen
Last active December 20, 2015 07:29
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 justinallen/6093429 to your computer and use it in GitHub Desktop.
Save justinallen/6093429 to your computer and use it in GitHub Desktop.
HTML: Basic Starter Page #1
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Page</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>My HTML</h1>
</header>
<article>
</article>
<footer>
<p>HTML Rocks</p>
</footer>
<script>
$(document).ready( function() {
$("body").css('background-color', '#f06d06');
console.log("jQuery is ready");
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment