-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
62 lines (55 loc) · 2.16 KB
/
index.php
File metadata and controls
62 lines (55 loc) · 2.16 KB
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
<!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">
<link rel="icon" href="../../favicon.ico">
<title>Trash Hunger in America</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link rel="stylesheet" href="//maxcdn.boostrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Fira+Sans:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<?php include("storeNav.php"); ?>
<div class="row">
<!-- left side of screen -->
<div class="col-md-4 col-xs-4">
<div class="inside inside-full-height">
<div class="content">
<img src="img/holder.png">
</div>
</div>
</div>
<!-- right side of screen -->
<div class="col-md-8 col-xs-8">
<div class="inside inside-full-height">
<div class="content">
<div class="mainText">
<h2>Welcome!</h2>
<br>
<p id="quote">"Hunger is not an issue of charity. It is an issue of justice." - Jacques Diouf</p>
<br>
<br>
<p>Approximately 40% of food in the US ends up in landfills, so to help alleviate this problem,
we provide grocery stores and other food sources an option to donate their unused and unsold food
to families and people in need in their community, simultaneously reducing food waste and combating
hunger locally! </p>
<br>
<br>
<p><a href="donate.php"><button class="buttonOther" id="donateButton" type=button>DONATE FOOD</button></a>
<a href="receive.php"><button class="buttonOther" id="receiveButton" type=button>RECEIVE FOOD</button></a></p>
<br>
<br>
</div>
</div>
</div>
</div>
</div> <!-- end row -->
<!-- Bootstraps javascript -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="ie10-viewport-bug-workaround.js"></script>
</body>
</html>