-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (52 loc) · 2 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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spare My Food</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<header>
<h1>Spare My Food</h1>
</header>
<main>
<div id="input">
<section id="intro">
<h2>Got food to give?</h2>
</br>
<p>Search below for local food banks in your area.</p>
<p>Enter a UK postcode:</p>
</section>
<section id="search">
<form>
<label for="postcode">Postcode: </label>
<input type="text" id="postcode" name="postcode">
<input class="cycle-button" id="submit" type="submit" value="Submit">
</form>
</div>
<div id="output" class="output-hidden">
<button id='previous' class="cycle-button">Previous</button>
<button id='next' class="cycle-button">Next</button>
<h2 id="bank-name" class="bank-info name"></h1>
<h3 id="bank-distance" class="bank-info distance"></h3>
<h3>Email: <span id="email"></span></h3>
<h3>Tel: <span id="tel"></span></h3>
<address id="bank-address" class="bank-info address"></address>
<h3>Items needed:</h3>
<ul id="items-needed" class="bank-info items-needed">
</ul>
</div>
</section>
</div>
</section>
</main>
<!--Leaflet JavaScript link -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<!--Main.js-->
<script src="main.js"></script>
</body>
</html>