-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (109 loc) · 4.3 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=EB+Garamond:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/style.css">
<title>Save Our Air - PublicDataLab</title>
</head>
<body>
<div class="jumbotron text-center">
<div class="d-flex h-100">
<div class="container justify-content-center align-self-center">
<h1 class="jumbotron-heading">Save Our Air</h1>
<p class="lead">USING LOCAL DATA STORIES TO MOBILISE ACTION AROUND AIR POLLUTION</p>
</div>
</div>
</div>
<ul class="nav nav-pills justify-content-center">
<li class="nav-item">
<a class="nav-link active">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="credits.html">Credits</a>
</li>
</ul>
<div class="container" id="main-text">
<div class="row row-padding">
<div class="col-md-10 offset-md-1">
<p>
Supported by <a href="">OrganiCity</a> and developed by the <a href="">Public Data Lab</a>, SaveOurAir is
an exploration of the social and political aspects of "smart cities".
Its specificity is the effort to use digital data to stir (rather than settle)
urban debate and to nurture (rather than purify) their multiple attachments.
</p>
</div>
</div>
<div class="row row-padding">
<a id="read-more" class="col-md-8 offset-md-2" href="">
Read more about our approach
</a>
</div>
<div class="row row-padding">
<div class="col-md-10 offset-md-1">
<p>
Focussing on air quality, SaveOurAir explored three ways to make urban data more "local"
and "politically relevant" and developed three experiments in data activation.
</p>
</div>
</div>
</div>
<div id="buttons" class="container">
<div class="row">
<a class="col-md-4" href="my-air.html">
<img class="mw-100" src="assets/myair.jpg">
<div class="text-center">MyAir</div>
</a>
<a class="col-md-4" href="mobilizing-our-air.html">
<img class="mw-100" src="assets/mobilizing-our-air.jpg">
<div class="text-center">Mobilizing our Air</div>
</a>
<a class="col-md-4" href="hot-potato-machine.html">
<img class="mw-100" src="assets/hot-potato-machine.jpg">
<div class="text-center">Hot Potato Machine</div>
</a>
</div>
</div>
<!-- Footer -->
<footer class="page-footer">
<!-- Footer Links -->
<div class="container-fluid text-center text-md-left">
<!-- Grid row -->
<div class="row">
<!-- Grid column -->
<div class="col-md-5 offset-md-1">
<!-- Content -->
<p class="text-uppercase">Project funded by:</p>
<a href="https://ec.europa.eu/">
<img class="logo" src="assets/logo-eu-commission.png">
</a>
<a href="https://organicity.eu/">
<img class="logo" src="assets/logo-organicity.png">
</a>
</div>
<div class="col-md-5">
<!-- Content -->
<a href="https://creativecommons.org/licenses/by/4.0/">
<img src="assets/logo-CC-BY.png">
</a>
<p class="license" class="text-uppercase">EXCEPT WHERE OTHERWISE NOTED, CONTENT AND DATA ON THIS SITE IS LICENSED UNDER THE CREATIVE COMMONS ATTRIBUTION LICENSE.</p>
</div>
</div>
<!-- Grid row -->
</div>
<!-- Footer Links -->
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>