-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (47 loc) · 1.35 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>
</title>
<link rel="stylesheet" href="css/jquery.mobile-1.2.0.min.css" />
<script src="js/jquery.js">
</script>
<script src="http://maps.google.com/maps/api/js?key=AIzaSyC3xVC_voAR_jORhisxSoguaJ7sYuQyi4Q&sensor=true"></script>
<script src="js/map.js">
</script>
<script src="js/jquery.mobile-1.2.0.min.js">
</script>
<!-- User-generated css -->
<style>
div#map {
width: 305px;
height: 500px;
border: 1px solid black;
}
</style>
<!-- User-generated js -->
<script>
try {
$(function() {
});
} catch (error) {
console.error("Your javascript has an error: " + error);
}
</script>
</head>
<body>
<!-- Home -->
<div data-role="page" id="page1">
<div id="header" data-theme="a" data-role="header" data-position="fixed">
<h3>
Pitstop
</h3>
</div>
<div id="map">
</div>
</body>
</html>