-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
29 lines (28 loc) · 1.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Orbitron' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="bower_components/leaflet/dist/leaflet.css" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div id="map"></div>
<div id="control">
<h1 id="control-header">Select a time</h1>
<div id="time-div">
<input type="text" id="time-hr" maxLength="2" class="digital-font time-input" value="12">
<span class="digital-font">:</span>
<input type="text" id="time-min" maxLength="2" class="digital-font time-input" value="00">
<button id="am-pm" class="digital-font">AM</button>
</div>
<button id="go-to-time" class="pretty-button">Jump To Time</button>
<button id="animate" class="pretty-button">Animate</button>
</div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/leaflet/dist/leaflet.js"></script>
<script src="js/app.js"></script>
<script src="js/data-accessor.js"></script>
<script src="js/main.js"></script>
</body>
</html>