-
Notifications
You must be signed in to change notification settings - Fork 0
/
farm-fridge.html
142 lines (123 loc) · 5.47 KB
/
farm-fridge.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Partner With a Fridge</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Poppins:wght@200;400;600;700&display=swap" rel="stylesheet">
</head>
<body class="farm-fridge-body">
<!-- Navigation Bar -->
<nav class="navbar navbar-dark navbar-subpage">
<div class="container-fluid">
<a class="navbar-brand" href=index.html>Home</a>
<a class="navbar-brand" href=info.html>The Issue</a>
<a class="navbar-brand" href=locator.html>Find a Community Fridge</a>
<a class="navbar-brand" href=farm-fridge.html>Partner With a Fridge</a>
<a class="navbar-brand" href=donate.html>Donate</a>
</div>
</nav>
<!-- Farm-Fridge Page -->
<div class="farm-fridge-page subpage">
<section class="farm-fridge-sec">
<img class="farm-img" src="https://live.staticflickr.com/65535/50881797506_176f3d534f_z.jpg" alt="farm">
<form class="farm-fridge-form">
<h1 class="farm-header">Partner with a Community Fridge</h1>
<p class="farm-text farm-caption">Our community fridge partnership program allows restaurants, farms, and supermarkets to donate food that would otherwise be thrown away.</p>
<label class="label-farm">Organization Name
<input class="farm-input" type="text" placeholder="Mountain View Farm">
</label>
<label class="label-farm">Email Address
<input class="farm-input" type="text" placeholder="[email protected]">
</label>
<label class="label-farm">Phone Number
<input class="farm-input" type="text" placeholder="333-333-3332">
</label>
<label class="label-farm">Contributions
<input class="farm-input" type="text" placeholder = "Fruits, vegetables">
</label>
<label class="label-farm">Address
<input class="farm-input" type="text" placeholder="Address">
</label>
<input class="farm-submit-btn" type="submit" value="Submit">
</form>
</section>
</div>
<!-- Footer -->
<footer class="text-center text-lg-start">
<!-- Grid container -->
<div class="container p-4 pb-0">
<!-- Section: Links -->
<section class="">
<!--Grid row-->
<div class="row">
<!-- Grid column -->
<div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold footer-text">
Refridge
</h6>
<p class="footer-text">
Providing easier access to quality produce in NYC and bringing awareness to food insecurity.
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none" />
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mt-3">
<p>
<a href="index.html" style="text-decoration: none;" class="footer-text">Home</a>
</p>
<p>
<a href="info.html" style="text-decoration: none;" class="footer-text">The Issue</a>
</p>
<p>
<a href="locator.html" style="text-decoration: none;" class="footer-text">Find a Community Fridge</a>
</p>
<p>
<a href="farm-fridge.html" style="text-decoration: none;" class="footer-text">Partner With a Fridge</a>
</p>
<p>
<a href="donate.html" style="text-decoration: none;" class="footer-text">Donate</a>
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none" />
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
<p class="footer-text"><i class="fas mr-3"></i> Stuyvesant CS</p>
<p class="footer-text"><i class="fas mr-3"></i> New York, NY 10282, US</p>
<p class="footer-text"><i class="fas mr-3"></i> [email protected]</p>
<p class="footer-text"><i class="fas mr-3"></i> + 1 212 312 4800</p>
</div>
<!-- Grid column -->
</div>
<!--Grid row-->
</section>
<!-- Section: Links -->
<hr class="my-3">
<!-- Section: Copyright -->
<section class="p-3 pt-0">
<div class="row d-flex align-items-center">
<!-- Grid column -->
<div class="col-md-7 col-lg-8 text-center text-md-start">
<!-- Copyright -->
<div class="p-3 footer-text">
© Refridge 2023
</div>
<!-- Copyright -->
</div>
</div>
</section>
</div>
<!-- Grid container -->
</footer>
<!-- Footer -->
<script src="script.js"></script>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
</body>
</html>