-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
329 lines (253 loc) · 16 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
<!-- TO-DOS:
[] Make corner images disappear if screen too small
-->
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lilita+One&display=swap" rel="stylesheet">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css"
/>
<link rel="shortcut icon" href="assets/logo.png" />
<title>Quarantine4Kids</title>
<script
src="https://code.jquery.com/jquery-3.5.0.js"
integrity="sha256-r/AaFHrszJtwpe+tHyNi/XCfMxYpbsRg2Uqn0x3s2zc="
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/7.14.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.14.2/firebase-database.js"></script>
<script src="scripts/script.js"></script>
</head>
<body>
<!-- NAV BAR -->
<nav class="navbar navbar-expand-lg navbar-light">
<div class="row col-md-4 offset-md-2">
<img src="assets/logo.png" class="navbar-logo animate__animated animate__fadeInDown">
<p class="logo-text lilita animate__animated animate__fadeInDown">quarantine4kids</p>
</div>
<div class="collapse navbar-collapse col-md-4" id="navbarColor03">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link navtab red animate__animated animate__fadeInRight" onclick="goToClasses()">register</a>
</li>
<li class="nav-item">
<a class="nav-link navtab teal animate__animated animate__fadeInRight" onclick="goToResources()">resources</a>
</li>
<li class="nav-item">
<a class="nav-link navtab blue animate__animated animate__fadeInRight" onclick="goToDonate()">
support us
</a>
</li>
</ul>
</div>
</nav>
<div style="width: 100%; background-color: #FC515C; padding-left: 10%; padding-right: 10%; padding-top: 32px; padding-bottom: 32px; text-align: center; font-size: 150%; color: white !important;">
<b style="color: white !important;">Thank you all for joining us on this journey but, the Quarantine4Kids journey has now come to an end as of August 31, 2020.</b> Quarantine4Kids has been a huge success -- we have served over 300 households through the pandemic and have raised ~$700 in funds for two charities. Thank you all for your support and please continue staying safe through these trying times.
</div>
<!-- TOP SECTION -->
<div class="col-md-12 no-padding header">
<img src="assets/header-bottom-left.png" class="header-bottom-left-img animate__animated animate__fadeInLeft"/>
<img src="assets/header-bottom-right.png" class="header-bottom-right animate__animated animate__fadeInRight"/>
<div class="col-md-8 offset-md-2">
<div class="row">
<div class="col-md-6">
<img class="image-header animate__animated animate__fadeIn" src="assets/header-image.png" >
</div>
<div class="col-md-6 header-right-section">
<h1 class="header-big-text animate__animated animate__fadeInUp">Quarantine isn’t fun ... <br> but drawing and reading are! </h1>
<p class="header-descr-text animate__animated animate__fadeInUp">We are a group of college students providing
<b>free</b> online Zoom workshops for K-12 students.
We are raising money for organizations providing
relief during COVID-19.</p>
<button class="header-button red-bg white animate__animated animate__fadeInUp" onclick="goToClasses()">
Register for 100% Free Virtual Classes
</button>
<button class="header-button teal-bg white animate__animated animate__fadeInUp" onclick="goToMailingListForm()">
Join the Mailing List for Weekly Updates
</button>
<br>
<button class="header-button blue-bg white animate__animated animate__fadeInUp" onclick="goToGoFundMe()">
Donate to Reach Out and Read!
</button>
<br>
</div>
</div>
</div>
</div>
<!-- HOW IT WORKS -->
<div class="col-md-12 no-padding how-it-works">
<div class="col-md-8 offset-md-2 how-it-works">
<h1 class="lilita white animate__animated animate__fadeInDown">How Quarantine4Kids Works</h1>
<br>
<div class="row">
<div class="col-md-3 how-divs lilita white animate__animated animate__fadeIn">
<img height="200px" src="assets/signup.png"/>
<h4 class="white bold">Sign Up For Classes</h4>
<br>
<p class="white">We release new drawing, reading, & building workshops every week! Sign up for our mailing list to get updates.</p>
</div>
<div class="col-md-3 offset-md-1 how-divs lilita white animate__animated animate__fadeIn">
<img height="200px" src="assets/verified.png"/>
<h4 class="white bold">Verified Instructors</h4>
<br>
<p class="white">All of our instructors are trusted & verified. We also recommend that you join your child during the classes -- it's fun!</p>
</div>
<div class="col-md-3 offset-md-1 how-divs lilita white animate__animated animate__fadeIn">
<img height="200px" src="assets/computer.png"/>
<h4 class="white bold">Engaging Workshops</h4>
<br>
<p class="white">We try to mix it up with every workshop. New illustrations, exciting stories, fun building challenges!</p>
</div>
</div>
</div>
</div>
<!-- Available Classes -->
<div class="col-md-12 no-padding white-section">
<img src="assets/support-bottom-left.png" class="support-bottom-left"/>
<img src="assets/support-top-right.png" class="support-top-right"/>
<div class="col-md-8 offset-md-2 white-section">
<a name="donate"></a>
<h1 class="lilita black">Who we Support</h1>
<br>
<p class="support-text">
As COVID-19 made its rounds around the world, many K-12 schools shutdown. As a result, millions of children are not at home, and do not have the same 8 hours of engaged learning that they used to have -- this is where 'Reach Out and Read' comes in!
</p>
<p class="support-text">
Reach Out and Read is one of the largest education charities in the United States. They have numerous initiatives like helping disabled children, kids in underpriveledged neighborhoods, and military children. We are proud of to support this organization!
</p>
<p class="support-text">
Quarantine4Kids is a 100% free program but, we <b>strongly suggest that parents consider contributing to our Reach Out and Read</b> GoFundMe campaign. Every donation helps us run our free classes!
</p>
<br>
<h3 class="col-md-12 lilita" style="padding-left: 0px !important; margin-left: 0px !important; text-align: left; text-align: center;">Organizations Quarantine4Kids Has Supported</h3>
<p class="col-md-12" style="padding-left: 0px !important; margin-left: 0px !important; text-align: left; color: #888 !important; text-align: center;">These are non-profits that we have raised money for through hosting our free virtual workshops</p>
<br>
<div class="row">
<div class="col-md-2 offset-md-4">
<a href="https://www.gofundme.com/f/quarantine4kids-campaign-reach-out-and-read" target="_blank">
<img class="" src="https://upload.wikimedia.org/wikipedia/commons/d/de/Reach_Out_and_Read_logo.png" style="height: auto; width: 100%; margin-top: 15px;"/>
</a>
</div>
<div class="col-md-2">
<a href="https://www.gofundme.com/f/quarantine4kids-campaign-for-feeding-america" target="_blank">
<img class="" src="https://upload.wikimedia.org/wikipedia/en/thumb/a/aa/Feeding_America_logo.svg/1200px-Feeding_America_logo.svg.png" style="height: auto; width: 100%;"/>
</a>
</div>
</div>
<br><br><br><br>
</div>
</div>
<!-- Get involved -->
<div class="col-md-12 no-padding get-involved">
<div class="col-md-8 offset-md-2 get-involved">
<a href="getInvolved"></a>
<h1 class="lilita white animate__animated animate__fadeInDown">Get Involved</h1>
<div class="row">
<div class="col-md-7" style="padding: 0px; padding-top: 20px;">
<p class="get-involved-text animate__animated animate__fadeInLeft">
There are many ways that you can help us out. We are looking for people to help us with many different tasks: marketing, advocating, and instructing to name a few.
</p>
<p class="get-involved-text-inverse bold animate__animated animate__fadeInLeft" onclick="goToVolunteerForm()">
Volunteer Interest Form
</p>
<p class="get-involved-text animate__animated animate__fadeInLeft">
For other inquiries, shoot us an email and let us know how you want to help out.
</p>
<p class="get-involved-text-inverse bold" onclick="emailQ4K()">
Email us at: quarantine4kids@gmail.com
</p>
<p class="get-involved-text">
We look forward to hearing from you!
</p>
</div>
<div class="col-md-5">
<img class="image-header" src="assets/get-involved.png" >
</div>
</div>
</div>
</div>
<!-- Available Classes -->
<div class="col-md-12 no-padding white-section">
<img src="assets/available-classes-bottom-left.png" class="available-classes-bottom-left"/>
<img src="assets/available-classes-bottom-right.png" class="available-classes-bottom-right"/>
<div class="col-md-8 offset-md-2 white-section">
<a name="classes"></a>
<h1 class="lilita black animate__animated animate__fadeInDown">Available Classes</h1>
<div class="available-classes row">
<div class="col-md-2">
<p class="all-classes-filter clickable animate__animated animate__fadeInDown" onclick="allClasses()"><b>All Classes</b></p>
<br>
<p class="all-classes-divider gray animate__animated animate__fadeInDown">CLASS TYPE</p>
<hr>
<div id="type_option_container">
</div>
<!-- <p class="all-classes-filter" onclick="drawingClasses()"><b>Drawing</b></p>
<p class="all-classes-filter" onclick="readingClasses()"><b>Reading</b></p>
<p class="all-classes-filter" onclick="craftClasses()"><b>Craft</b></p> -->
<br>
<p class="all-classes-divider gray animate__animated animate__fadeInDown">AGE GROUP</p>
<hr>
<div id="age_group_container">
</div>
</div>
<div class="col-md-10 animate__animated animate__fadeIn">
<h1 style="font-weight: bold;" id="classTitle">All Classes</h1>
<hr>
<div id="classContainer">
</div>
</div>
<hr class="col-md-10 offset-md-2" style="margin-top: 40px;">
</div>
</div>
</div>
<!-- Resources -->
<div class="col-md-12 no-padding resources">
<div class="col-md-8 offset-md-2 resources">
<h1 class="lilita white">Resources</h1>
<a name="resources"></a>
<div class="col-md-12" style="padding-top: 40px;">
<div class="row">
<div class="col-md-4 offset-md-2 resource-divs" onclick="goToInnerArtists()">
<img height="200px" style="margin-bottom: 20px;" src="assets/resource1.png"/>
<h4 class="white bold">Unleash your Inner Artist</h4>
<br>
<p class="white">Here are some of the things we’ve drawn in our previous “Unlease Your Inner Artist” sessions!</p>
</div>
<div class="col-md-4 offset-md-1 resource-divs" onclick="goToPreviousReadings()">
<img height="200px" style="margin-bottom: 20px;" src="assets/resource2.png"/>
<h4 class="white bold">Free E-Books</h4>
<br>
<p class="white">Here are some resources that we use to get books online. Many different platforms are providing free e-books during this time.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="col-md-12 no-padding">
<img src="assets/footer-bottom-right.png" class="footer-bottom-right"/>
<div class="col-md-8 offset-md-2 footer row">
<div class="col-md-6">
<p class="footer-text">Our mission is to nourish youth minds
regardless of the circumstance.</p>
<p class="footer-text"><b onclick="goToGoFundMe()">Donate</b> or <b onclick="goToVolunteerForm()">volunteer</b> today!</p>
</div>
<div class="col-md-2 offset-md-2">
<!-- <p class="footer-tabs"><u>About</u></p> -->
<!-- <p class="footer-tabs clickable">The Team</p> -->
</div>
<div class="col-md-2">
<p class="footer-tabs"><u>Contact</u></p>
<p class="footer-tabs clickable" onclick="emailQ4K()">Email Us</p>
<p class="footer-tabs clickable" onclick="goToMailingListForm()">Join the Mailing List</p>
</div>
</div>
</div>
</body>
</html>