-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·21 lines (21 loc) · 997 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>How many cups?</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<h3 class="main-title"> How many cups do you need to place side by side from Left Field Labs to reach your destination?</h3>
<div class="destinations-container">Collecting Cups...</div>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=AIzaSyDC5HvnUTgomRyDQ-SPQd54TJrSGFDy2Ls&sensor=false"></script>
<script src="js/util.js"></script>
<script src="js/data.js"></script>
<script src="js/main.js"></script>
</body>
</html>