-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Home | TrafficApp</title>
<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">
<link href="css/codiqa.ext.min.css" rel="stylesheet">
<link href="css/jqm-neue.css" rel="stylesheet">
<link href="css/weather.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery.mobile-1.3.1.min.js"></script>
<script src="js/codiqa.ext.min.js"></script>
<script src="js/trafficapp.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="js/min.js" type="text/javascript"></script>
</head>
<body>
<div data-role="page" data-control-title="Home" id="home">
<div id="pageHeader" data-theme="c" data-role="header" data-position="fixed">
<a data-role="button" data-inline="true" href="login.html" data-icon="gear" data-iconpos="notext" class="ui-btn-right headerButtonRight">
</a>
<h3 class="headerTitle">
TrafficApp
</h3>
</div>
<div data-role="content">
<div id = "test"></div>
</div>
<div id="pageFooter" data-role="tabbar" data-iconpos="left" data-theme="c">
<ul>
<li>
<a href="index.html" data-transition="fade" data-theme="" data-icon="home">
Home
</a>
</li>
<li>
<a href="allroutes1.html" data-transition="fade" data-theme="" data-icon="bars">
All Routes
</a>
</li>
</ul>
</div>
</div>
</body>
</html>