-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (39 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://use.typekit.net/mfr0hsh.css">
<link rel="stylesheet" href="main.css">
<title>15MC</title>
</head>
<body>
<div id="container">
<div id="sideBar">
<div id="mc"> 15 Minute Cities </div>
<br> An open source project created with p5.js, aiming to visualise the need for accessible based urban planning.
<!-- Not for profit this project is community run. -->
<div id="about">
<a href="about.html">About</a>
</div>
<div id="data">
<a href="data.html">Data</a>
</div>
<div id="donate">
<a href="donate.html">Donate</a>
</div>
</div>
<div id="map"></div>
</div>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.10.0/p5.min.js"
integrity="sha512-lvddmeF7aHRJwdbJeYThWd5kWSjTrXBzCRF/jYROiHzmhMJ1dEXfGH5Q7ft0yhizXTopAETG03s5ajTflauijA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script> -->
<script src="sketch.js"></script>
</body>
<!-- Links -->
</html>