Skip to content

Instantly share code, notes, and snippets.

@SpencerCooley
Created October 3, 2011 15:55
Show Gist options
  • Save SpencerCooley/1259438 to your computer and use it in GitHub Desktop.
Save SpencerCooley/1259438 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>A blank HTML5 page</title>
<meta charset="utf-8" />
<!--linked the stylsheet-->
<link rel="stylesheet" type="text/css" href="style.css" />
<!--included jquery from remote server-->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<!-- include the google maps api sensor => false-->
<script type="text/javascript"
src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<!--included js/map.js ; the file that has all of my maps javascript-->
<script type="text/javascript" src="js/map.js"></script>
</head>
<body>
<h1>Maps Sandbox!</h1>
<div id="map"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment