-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 1.46 KB
/
index.html
File metadata and controls
33 lines (32 loc) · 1.46 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="FINDR" content="Search and Rescue Bot Interface">
<meta charset="utf-8">
<title>FINDR</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/map.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.9.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.9.1/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.9.1/firebase-firestore.js"></script>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<script src="js/myo.js"></script>
<script src="public/src/myo_controls.js"></script>
<script src="public/src/main.js"></script>
</head>
<body style="overflow: hidden">
<nav>
<div class="nav-wrapper teal lighten-2">
<a href="" class="brand-logo center">FINDR</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="liveStream.html">Live Stream</a></li>
</ul>
</div>
</nav>
<div id="map"></div>
<script src="js/main.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCnmkgT-Mx3zIDdCVPvsfzisN2iJkHLuSQ&callback=initMap"></script>
</body>
</html>