-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaboutus.html
56 lines (47 loc) · 2.4 KB
/
aboutus.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
<!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="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>
<section>
<div id="our-mission">
Our mission as web developers is to make it easier for those in need to obtain the resources they need.
In our effort to achieve that goal, we scrub websites to show you what food is available near you,
as well as provide a space for people to donate their excess food.
</div>
</section>
<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>
</body>
</html>