-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapping.html
More file actions
51 lines (49 loc) · 2.21 KB
/
mapping.html
File metadata and controls
51 lines (49 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Data Set Selector</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/styles.css">
<link href='https://fonts.googleapis.com/css?family=Michroma' rel='stylesheet'>
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
</head>
<body>
<ul class="navigationBar">
<li><a href="/index.html">Home</a></li>
<li><a class="active">Open Data</a></li>
<li class="right"><a href="/about.html">About</a></li>
</ul>
<div class="textBoxMapping">
<p>Here you will find a small variety of options to look through.</p>
</div>
<br><hr>
<div class="textBoxMapping">
<p>Environmental Datasets</p>
</div>
<br>
<div class="dataBtns">
<button class="dataButton" onclick="document.location='/Mainpages/dataPages/woodlandArea.html'">Woodland Area</button>
<button class="dataButton" onclick="document.location='/Mainpages/dataPages/airQuality.html'">Air Quality</button>
<button class="dataButton" onclick="document.location='/Mainpages/dataPages/temperatureData.html'">Temperature</button>
</div>
<div class="textBoxMapping">
<p>Birth / Deaths Datasets</p>
</div>
<br>
<div class="dataBtns">
<button class="dataButton" onclick="document.location='/Mainpages/dataPages/birthData.html'">Births</button>
<button class="dataButton" onclick="document.location='/Mainpages/dataPages/deathData.html'">Deaths</button>
</div>
<div class="textBoxMapping">
<p>
Property and Finances
</p>
</div>
<br>
<div class="dataBtns">
<button class="dataButton" onclick="document.location='/Mainpages/dataPages/propertyData.html'">Property</button>
<button class="dataButton" onclick="document.location='/Mainpages/dataPages/financeData.html'">Finances</button>
</div>
</html>