forked from cambridgecoding/drone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 770 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 770 Bytes
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Seek'n'Destroy</title>
<link rel="stylesheet" href="../lib/bootstrap.min.css">
<script src="/lib/jquery.js"><</script>
<script src="/lib/tracking.js"></script>
<script src="drone-frontend.js"></script>
<script src="colorTrackerUtils.js"></script>
</head>
<body class="container">
<h1 class="text-center">Seek'n'Destroy Drone</h1>
<div id="example" class="row">
<div class="col-md-8">
<!-- The Drone view -->
<img class="drone" src="snapshots/camera2.png" width="640" height="360"/>
</div>
<div class="col-md-4">
<h2>What do I see?</h2>
<div class="output">
Colours!
</div>
</div>
</div>
</body>
</html>