-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
232 lines (198 loc) · 8.63 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Refridge</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<!-- Fonts -->
<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>
<!-- Header -->
<div class="header">
<!-- Navigation Bar -->
<nav class="navbar navbar-dark bg-transparent">
<div class="container-fluid nav-container">
<a class="navbar-brand nav-link" href=info.html>The Issue</a>
<a class="navbar-brand nav-link" href=locator.html>Find a Community Fridge</a>
<a class="navbar-brand nav-link" href=farm-fridge.html>Partner with a Fridge</a>
<a class="navbar-brand nav-donate" href=donate.html>Donate</a>
</div>
</nav>
<!-- Image Carousel -->
<div id="slideCarousel" class="carousel slide caro" data-bs-ride="carousel">
<!-- Indicators -->
<div class="carousel-indicators">
<button type="button" data-bs-target="#slideCarousel" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#slideCarousel" data-bs-slide-to="1"></button>
<button type="button" data-bs-target="#slideCarousel" data-bs-slide-to="2"></button>
</div>
<!-- The slideshow/carousel -->
<div class="carousel-inner">
<!-- Heading -->
<h1 class="header-text">Refridge</h1>
<p class="header-statement">Providing easier access to quality produce in NYC and bringing awareness to food
insecurity.</p>
<div class="carousel-item active">
<img src="https://assets3.thrillist.com/v1/image/2959629/1200x630/flatten;crop_down;webp=auto;jpeg_quality=70
" alt="Community Fridge 1" class="d-block w-100">
</div>
<div class="carousel-item">
<img src="https://www.ny1.com/content/dam/News/2020/08/26/img_5118edited_jpg
" alt="Community Fridge 2" class="d-block w-100">
</div>
<div class="carousel-item">
<img src="https://static01.nyt.com/images/2020/06/18/nyregion/00nyvirus-fridges-02/00nyvirus-fridges-02-articleLarge.jpg?quality=75&auto=webp&disable=upscale
" alt="Community Fridge 3" class="d-block w-100">
</div>
</div>
<!-- Left and right controls/icons -->
<button class="carousel-control-prev" type="button" data-bs-target="#slideCarousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#slideCarousel" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</div>
</div>
<!-- Info Section -->
<section class="sec1-whole">
<div class="sec1">
<div class="left-text">
<h2 class="text-sec1">Nearly 1.1 million NYC residents live with food insecurity.</h2>
<a href="info.html" class="learn-more">Learn More</a>
</div>
<img class="sec1-image"
src="https://pyxis.nymag.com/v1/imgs/1a0/258/c100a4990f0e1a93f06d21b82887235b7c-lede-.rhorizontal.w1100.jpg"
alt="Community Fridge in NYC">
</div>
</section>
<!-- Trisection -->
<div class="trisection">
<!-- Locator -->
<div class="col locator-sec">
<img class="tri-img"
src="https://assets3.thrillist.com/v1/image/2959660/750x500/flatten;crop;webp=auto;jpeg_quality=50.jpg"
alt="Community fridge">
<button class="locator-btn tri-button" type="button" onclick="location.href='locator.html'"> Find a Fridge
</button>
</div>
<!-- Donate -->
<div class="col donate-sec">
<img class="tri-img"
src="https://cdn.vox-cdn.com/thumbor/-gFmMV5hhksQ-nGVjSvsGv_dYeM=/0x0:1500x2000/1200x0/filters:focal(0x0:1500x2000):no_upscale()/cdn.vox-cdn.com/uploads/chorus_asset/file/22307654/Detroit_Fridge___Detroit_Community_Fridge.jpeg"
alt="Volunteer at Community Fridge">
<button class="donate-btn tri-button" type="button" onclick="location.href='donate.html'"> Donate </button>
</div>
<!-- Information -->
<div class="col info-sec">
<img class="tri-img"
src="https://static01.nyt.com/images/2020/04/12/us/12ncf-feedingamerica2/10ncf-feedingamerica2-mediumSquareAt3X.jpg"
alt="Food organization">
<button class="info-btn tri-button" type="button" onclick="location.href='info.html'"> The Issue </button>
</div>
</div>
<!--Volunteer with Us-->
<section class="volunteer-sec">
<img class="vol-img"
src="https://cuesa.org/sites/default/files/styles/scale_610px/public/volunteers_kitchen__amanda_lynn_photography.jpg?itok=C50Rjq-s"
alt="Volunteering">
<div class="vol-right">
<h2 class="vol-header">Volunteer With Us</h1>
<div class="volunteer-text">
<p class="vol-caption">It doesn't take a huge commitment to make an impact!
<br>Help distribute food to those that need it alongside other volunteers.
</p>
</div>
<form class="volunteer-form">
<label class="vol-label">Full Name:
<input class="vol-input" type="text" placeholder="name">
</label>
<label class="vol-label">Email:
<input class="vol-input" type="email" placeholder="email">
</label>
<input class="vol-submit-btn" type="submit" value="Submit">
</form>
</div>
</section>
<!-- 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> cchen51@stuy.edu</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 -->
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
</body>
</html>