forked from CSUMB-SP17-CST499/VTRMD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (40 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="Scripts/js/mapper.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBcCMvNetnyr3W_pvvDpoVWaT7WKzKqlXc&callback=initMap">
</script>
<!-- Cal Speed Application -->
<title>CalSPEED: Mobile Data Route Visualizer</title>
<meta name="author" content="CalSPPED Capstone 2017" />
<script src="Scripts/js/async.js" type="text/javascript" ></script>
<script src="Scripts/js/data.js" type="text/javascript" ></script>
<link rel="stylesheet" type="text/css" href="Styles/map.css" />
<link rel="stylesheet" type="text/css" href="./Styles/theme-common.css" />
<script>
$( document ).ready(function() {
console.log( "ready!" );
});
</script>
</head>
<body>
<div id="content-background-layer">
<div id="content-view-wrapper">
<h1>CalSPEED: Mobile Data Trace Route Visualizer</h1>
<div id="content-dashboard">
<p>Test text</p>
</div>
</div>
<footer>
<figure>
<img class="footerLogoImage" src="./Media/Images/csumb-logo-white.png" />
</figure>
<p>
All rights reserved © Copyright
</p>
</footer>
</div> <!-- background <div> -->
</body>
</html>