-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfindfood.html
83 lines (71 loc) · 2.95 KB
/
findfood.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pantry Share</title>
<link rel="stylesheet" href="./css/google-styles.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/uikit.min.css" />
<link rel="stylesheet" href="./css/style.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit-icons.min.js"></script>
</head>
<body>
<div>
<h1 class="uk-heading-large">
<img src="assets/pantry-share-large.png" />
</h1>
</div>
<nav class="uk-navbar-container" id="uk-navbar">
<div class="uk-navbar-left">
<ul class="uk-navbar-nav">
<li class="uk-active" id="home"><a href="index.html">Home</a></li>
<li class="uk-active" id="find-food">
<a href="findfood.html">Find Food</a>
</li>
<li class="uk-active" id="give-food">
<a href="givefood.html">Give Food</a>
</li>
<li class="uk-active" id="about-us">
<a href="aboutus.html">About Us</a>
</li>
</ul>
</div>
</nav>
<hr />
<aside>
<div id="search-options">
<p>Filter results by Zipcode:</p>
<form id="food-search">
<div id="food-filters">
<input type="text" id="zipcode" placeholder="" />
<input type="submit" id="search-button" />
</div>
</form>
</div>
<div id="food-options">
Find Food Here
</div>
<div id="floating-panel">
<div id="map"></div>
</div>
</aside>
<footer class="page-footer">
© Ana Medrano, Stephon Autery, and Dan Fellows 2020
</footer>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.13.1/firebase-app.js"></script>
<!-- Specific Firebase products we want (Database) -->
<script src="https://www.gstatic.com/firebasejs/7.13.1/firebase-database.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.13.1/firebase-analytics.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="./js/google-geocoding.js"></script>
<script src="./js/foodpantries.js"></script>
<script src="./js/script.js"></script>
<!-- Added scripts for Google Maps -->
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBL02cgmPwm-pJ55En3aRvxczdN4hzc05g&callback=initMap"></script>
</body>
</html>