-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (59 loc) · 2.24 KB
/
index.html
File metadata and controls
62 lines (59 loc) · 2.24 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
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
<!DOCTYPE html>
<html>
<head>
<title>
Urban Observatory sensor experiments
</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
<script src="https://kit.fontawesome.com/9bdd262b8b.js"></script>
<script src="main.js"></script>
</head>
<body>
<nav class="navbar is-dark" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item"
href="https://www.turing.ac.uk/research/research-projects/spatial-inequality-and-smart-city">
<h4>Sensor Coverage Map</h4>
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false"
data-target="navbar-responsive-menu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbar-responsive-menu" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="https://www.turing.ac.uk/research/research-projects/spatial-inequality-and-smart-city" target="_blank">
Project home
</a>
<a class="navbar-item">
Documentation
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
More
</a>
<div class="navbar-dropdown">
<a class="navbar-item">
Team
</a>
<a class="navbar-item">
Contact
</a>
<hr class="navbar-divider">
<a class="navbar-item">
Report a problem
</a>
</div>
</div>
</div>
</div>
</nav>
<section class="fullscreen-map">
<div id="map" class="map"></div>
</section>
</body>
</html>