-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (60 loc) · 2.4 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
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset="utf-8">
<title>Air Pollution</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto+Condensed" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<section id="dropdown" class="dropdown">
<span><h1>Choose Local London Authority</h1></span>
<div class = "dropdown-content">
<p id="1" class="item">Barking and Dagenham</p>
<p id="2" class="item">Barnet</p>
<p id="3" class="item">Bexley</p>
<p id="4" class="item">Brent</p>
<p id="5" class="item">Bromley</p>
<p id="6" class="item">Camden</p>
<p id="7" class="item">City of London</p>
<p id="8" class="item">Croydon</p>
<p id="9" class="item">Ealing</p>
<p id="10" class="item">Enfield</p>
<p id="11" class="item">Greenwich</p>
<p id="12" class="item">Hackney</p>
<p id="13" class="item">Hammersmith and Fulham</p>
<p id="14" class="item">Haringey</p>
<p id="15" class="item">Harrow</p>
<p id="16" class="item">Havering</p>
<p id="17" class="item">Hillingdon</p>
<p id="18" class="item">Hounslow</p>
<p id="19" class="item">Islington</p>
<p id="20" class="item">Kensington and Chelsea</p>
<p id="21" class="item">Kingston</p>
<p id="22" class="item">Lambeth</p>
<p id="23" class="item">Lewisham</p>
<p id="24" class="item">Merton</p>
<p id="25" class="item">Newham</p>
<p id="26" class="item">Redbridge</p>
<p id="27" class="item">Richmond</p>
<p id="28" class="item">Southwark</p>
<p id="29" class="item">Sutton</p>
<p id="30" class="item">Tower Hamlets</p>
<p id="31" class="item">Waltham Forest</p>
<p id="32" class="item">Wandsworth</p>
<p id="33" class="item">Westminster</p>
</section>
<section id="main" class="main-style">
<section id = "spinner"></section>
<section id = "title"></section>
<section id="info">
<h1 class = "title">A Gif of Fresh Air</h1>
</section>
<section id="gif"></section>
<section id="ratings"></section>
</section>
</body>
<script type="text/javascript" src="logic.js"></script>
<script type="text/javascript" src="dom.js"></script>
</html>