-
Notifications
You must be signed in to change notification settings - Fork 1
/
burritoFinder.html
36 lines (35 loc) · 1.17 KB
/
burritoFinder.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
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tell Me Where to Find Burritos, Phone.</title>
<script src="burritoFinderScripts.js"></script>
<script src="http://maps.google.com/maps/api/js?sensor=true"></script>
<link rel="stylesheet" href="burritoFinderStyles.css">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,900|Merriweather+Sans' rel='stylesheet' type='text/css' />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="location">
<p>Your location will go here.</p>
</div>
<div id="container">
<div id="convertOption">
<div id="distance">
</div>
<p>
<input type="button" id="convert" value="Convert to Street Address">
</p>
<p>
<a href="#directionsPanel"><input type="button" id="getDirections" value="Bring Me To Those Burritos"></a>
</p>
</div>
<div id="map">
</div>
<form>
<input type="button" id="watch" value="Follow Me">
<input type="button" id="clearWatch" value="Stop">
</form>
</div>
</body>
</html>