Skip to content

Instantly share code, notes, and snippets.

@jiglesiasabio
Created June 26, 2013 13:09
Show Gist options
  • Save jiglesiasabio/5867236 to your computer and use it in GitHub Desktop.
Save jiglesiasabio/5867236 to your computer and use it in GitHub Desktop.
Minimal HTML5 file with CDN jQuery
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>TITLE</title>
<link href='http://fonts.googleapis.com/css?family=Dancing+Script' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Autour+One' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src="./game.js"></script>
<style type="text/css">
body {
padding-top: 20px;
padding-bottom: 40px;
color:white;
background-color:black;
text-align:center;
font-size:1em;
}
h1 {
font-size:4em;
}
a {
text-decoration: none;
color: gray;
font-size:1.2em;
}
.dancing {
font-family: 'Dancing Script', cursive;
}
.autour {
font-family: 'Autour One', cursive;
}
</style>
</head>
<body>
<h1 class="dancing">This is an h1</h1>
<p class="autour">This is a paragraph</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment