-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgraph.html
executable file
·68 lines (48 loc) · 1.56 KB
/
graph.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
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html><head>
<title>TestingPage</title>
<meta name="viewport" intial-scale='1.0', content="user-scalable=no, width=device-width, initial-scale=1">
<!-- <meta name="viewport" intial-scale='1.0', content=""> -->
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<!-- local Jquery -->
<script src="js/jquery/jquery.js"></script>
<!-- <script src="js/modernizr.js"></script> -->
<script src="js/hammer.min.js"></script>
<script type="text/javascript">
jQuery(document).on("mobileinit", function() { jQuery.mobile.autoInitializePage = false;
});</script>
<script src="js/jquery/jquery.mobile-1.4.5.min.js"></script>
<!-- local lib and tests -->
<script src="js/page-script.js"></script>
</head>
<body>
<div id="wrapper">
<div class='navbar'>
<img class='nav-logo' src="img/Logo_Final_Small.png">
<img class="nav-icon-settings" src="img/icons/settings_icon.png">
</div>
<div id ='bottom-navbar'>
<ul>
<li>
<img class="nav-icon home-button" src="img/icons/home_icon.png">
</li>
<li>
<img class="nav-icon create-button" src="img/icons/create_icon.png">
</li>
<li>
<img class="nav-icon history-button" src="img/icons/history_icon.png">
</li>
<li>
<img class="nav-icon graph-button" src="img/icons/graph_icon.png">
</li>
</ul>
</div>
<div class="white-fader"></div>
<div class="content-wrapper">
<div id="content-main-wrapper-graph">
<img src="img/analytics_01.jpg">
</div>
</div>
</div>
</body>
</html>