-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
500 lines (418 loc) · 19.9 KB
/
index.html
File metadata and controls
500 lines (418 loc) · 19.9 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
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
<!DOCTYPE html>
<html lang="en">
<head>
<title> Edison Academy Magnet School Science Olympiad </title>
<meta charset="utf-8">
<meta name="title" content="Edison Academy Magnet School Science Olympiad">
<meta name="description" content="Website of Edison Academy Magnet School (EAMS) Science Olympiad team">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/menu.css">
<link rel="stylesheet" href="css/carousel.css">
<link
href="https://fonts.googleapis.com/css2?family=Space+Mono&family=Work+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<script src="https://use.fontawesome.com/c3dc2f3a63.js" defer></script>
<script src="js/carousel.js" defer></script>
</head>
<body>
<h1 style="text-align: center;">
<!-- A little awkward to read here but forces line break between these two to be preferred -->
<span style="display: inline-block;">Edison Academy Magnet School
</span> <span style="display: inline-block;">
Science Olympiad </span>
</h1>
<div class="carousel__holder">
<div class="carousel">
<input class="carousel__activator" type="radio" name="carousel" id="a" checked="checked" />
<input class="carousel__activator" type="radio" name="carousel" id="b" />
<input class="carousel__activator" type="radio" name="carousel" id="c" />
<input class="carousel__activator" type="radio" name="carousel" id="d" />
<input class="carousel__activator" type="radio" name="carousel" id="e" />
<div class="carousel__controls">
<label class="carousel__control carousel__control--backward" for="e"></label>
<label class="carousel__control carousel__control--forward" for="b"></label>
</div>
<div class="carousel__controls">
<label class="carousel__control carousel__control--backward" for="a"></label>
<label class="carousel__control carousel__control--forward" for="c"></label>
</div>
<div class="carousel__controls">
<label class="carousel__control carousel__control--backward" for="b"></label>
<label class="carousel__control carousel__control--forward" for="d"></label>
</div>
<div class="carousel__controls">
<label class="carousel__control carousel__control--backward" for="c"></label>
<label class="carousel__control carousel__control--forward" for="e"></label>
</div>
<div class="carousel__controls">
<label class="carousel__control carousel__control--backward" for="d"></label>
<label class="carousel__control carousel__control--forward" for="a"></label>
</div>
<div class="carousel__track">
<!-- When adding more, modify the lines around line 229 in carousel.css which are like:
.carousel__track .carousel__slide:nth-of-type(1)
-->
<ul>
<li class="carousel__slide"
style="background-image: url('images/team\ picture\ last\ year.png');"></li>
<li class="carousel__slide"
style="background-image: url('images/build\ picture\ 1.png');"></li>
<li class="carousel__slide"
style="background-image: url('images/build\ picture\ 2.png');"></li>
<li class="carousel__slide"
style="background-image: url('images/team\ picture\ two\ years\ ago.png');"></li>
<li class="carousel__slide"
style="background-image: url('images/team-results.png');"></li>
</ul>
</div>
<div class="carousel__indicators">
<label class="carousel__indicator" for="a"></label>
<label class="carousel__indicator" for="b"></label>
<label class="carousel__indicator" for="c"></label>
<label class="carousel__indicator" for="d"></label>
<label class="carousel__indicator" for="e"></label>
</div>
</div>
</div>
<br>
<!-- <p><strong>Write a notice here</strong></p> -->
<p>
<strong>Please contact <a href="mailto:sciolymca@gmail.com">sciolymca@gmail.com</a> if you have any questions.</strong>
</p>
<!-- <h2>Latest News</h2>
<hr />
<h4>Latest Post</h4>
<h4>Recent Posts</h4>
<p style="text-align: right;"><a href="/SciOly-Website-Template/pages">
See more news </a></p>
-->
<h2> What is Science Olympiad? </h2>
<hr />
<p>
Science Olympiad is a team STEM competition in which nearly 8,000 middle school and high school teams compete each year.
There are 23 different events pertaining to various fields of science, including
earth science, biology, chemistry, physics, and engineering.
Events come in three basic categories: build, test, and lab and are generally done with one or more partners.
<br><br>
In the past, our team has participated in invitational competitions at universities such as MIT, Harvard,
Columbia, Princeton, Cornell, Brown, and many others.
In addition, our team is regularly competitive at the regional and state levels!
<br><br>
We compete in Division C, the division for students from 9-12.
</p>
<h2> What are our accomplishments? </h2>
<hr>
<p>
We placed 6th at the 2022 NJ Science Olympiad State Tournament.
<br>
We medaled in 6 events: Chem Lab, Codebusters, Detector Building, Dynamic Planet, Ornithology, and Remote
Sensing
</p>
<p>
We placed 5th at the 2021 NJ Science Olympiad State Tournament.
<br>
We medaled in 9 events: Chem Lab, Circuit Lab, Codebusters, Designer Genes, Experimental Design, Forensics,
Machines, Protein Modeling, and Sounds of Music
</p>
<p>
We placed <span style="color: #71706e;">2nd</span> at the 2022 CMU Science Olympiad Invitational
<br>
We medaled in 16 events (including 11 Gold medals!):
<ul>
<li><span style="color: #b59410;">1st</span> in Cell Biology</li>
<li><span style="color: #b59410;">1st</span> in Chem Lab</li>
<li><span style="color: #b59410;">1st</span> in CodeBusters</li>
<li><span style="color: #b59410;">1st</span> in Detector Building</li>
<li><span style="color: #b59410;">1st</span> in Disease Detectives</li>
<li><span style="color: #b59410;">1st</span> in Forensics</li>
<li><span style="color: #b59410;">1st</span> in Green Generation</li>
<li><span style="color: #b59410;">1st</span> in Its About Time</li>
<li><span style="color: #b59410;">1st</span> in Ornithology</li>
<li><span style="color: #b59410;">1st</span> in Remote Sensing</li>
<li><span style="color: #b59410;">1st</span> in Wifi Lab</li>
<li><span style="color: #71706e;">2nd</span> in Anatomy & Physiology </li>
<li><span style="color: #71706e;">2nd</span> in Astronomy</li>
<li><span style="color: #71706e;">2nd</span> in Environmental Chemistry</li>
<li><span style="color: #71706e;">2nd</span> in Trajectory</li>
<li>4th in Dynamic Planet</li>
</ul>
</p>
<p>
We placed 9th at the 2021 Harvard-Brown Invitational
</p>
<p>
We were top 10 in Astronomy, Chemistry Lab, Codebusters, Environmental Chemistry, and Remote Sensing at the 2022
UPenn Science Olympiad Invitational
</p>
<!-- <h2> What are the practices like? </h2>
<hr />
<p>We meet every Monday from 6:00 to 8:00 P.M. Currently, all meetings are done virtually, except for build
meetings. Studying outside organized practices is encouraged.</p>
<h2>2020 modifications</h2>
<hr />
<p>This season, due to the novel Coronavirus, Science Olympiad has to make some changes. Competitions will be
virtual, and build events will not occur at these competitions. However, we will still practice these events as
part of a build team. In the list of events below, events with a strikethrough will not occur at competitions,
and events with an asterisk have modifications. See the emailed PowerPoint for more information. </p> -->
<h2>Events</h2>
<!-- begin event descriptions -->
<div>
<hr />
<h3> Life, Personal & Social Science </h3>
<details>
<summary> Anatomy and Physiology </summary>
<p>
Participants will be assessed on their understanding of the
anatomy and physiology for the human Cardiovascular,
Lymphatic, and Excretory systems.
<br>
<a href="https://www.soinc.org/anatomy-and-physiology-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Disease Detectives </summary>
<p>
Participants will use investigative skills in the scientific
study of disease, injury, health, and
disability in populations or groups of people.
<br>
<a href="https://www.soinc.org/disease-detectives-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Ecology </summary>
<p>
Participants will answer questions involving content
knowledge and process skills in the area of ecology and
adaptations in featured North American biomes.
<br>
<a href="https://www.soinc.org/ecology-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Forestry </summary>
<p>
Participants will be assessed on their general forestry
knowledge and the trees found in the United States that are
on the 2024 Official Science Olympiad National Tree List.
<br>
<a href="https://www.soinc.org/forestry-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Microbe Mission </summary>
<p>
Teams will answer questions, solve problems and analyze data
pertaining to microbes.
<br>
<a href="https://www.soinc.org/microbe-mission-c">Link to SOINC page</a>
</p>
</details>
<h3> Earth and Space Science </h3>
<details>
<summary> Astronomy </summary>
<p>
Teams will demonstrate an understanding of Stellar Evolution: Star Formation & Exoplanets.
<br>
<a href="https://www.soinc.org/astronomy-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Dynamic Planet </summary>
<p>
Participants will demonstrate an understanding of the large-scale processes affecting the structure of Earth's crust.
<br>
<a href="https://www.soinc.org/dynamic-planet-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Fossils </summary>
<p>
Teams identify and classify fossils and demonstrate their knowledge of ancient life.
Tasks will be related to interpretation of past environments and ecosystems,
adaptations, evolutionary relationships, and the use of fossils in dating and correlating rock units.
<br>
<a href="https://www.soinc.org/fossils-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Geologic Mapping </summary>
<p>
Teams will demonstrate understanding in the construction and use of topographic maps,
geologic maps, and cross sections, and their use in forming interpretations regarding subsurface structures and
past depositional environments on Earth and other planetary bodies.
<br>
<a href="https://www.soinc.org/geologic-mapping-c">Link to SOINC page</a>
</p>
</details>
<h3> Physical Science and Chemistry </h3>
<details>
<summary> Air Trajectory </summary>
<p>
Prior to the competition, teams will design, construct, and calibrate a single device
capable of launching projectiles onto a target and collect data regarding device parameters and performance.
<br>
<a href="https://www.soinc.org/air-trajectory-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Chem Lab </summary>
<p>
Teams will complete one or more tasks and answer a series of questions involving
the scienctific processes of chemistry focused in the areas of Periodicity and Equilibrium.
<br>
<a href="https://www.soinc.org/chem-lab-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Detector Building </summary>
<p>
Teams will build a durable ORP or Redox Probe that will accurately measure and display both voltage and
the concentrations of NaCl in parts per million from 0 to 5000 ppm of different water samples.
<br>
<a href="https://www.soinc.org/detector-building-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Forensics </summary>
<p>
Given a scenario and some possible suspects, students will perform a series of tests.
These tests, along with other evidence or test results, will be used to solve a crime.
<br>
<a href="https://www.soinc.org/forensics-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Optics </summary>
<p>
Teams must participate in an activity involving positioning mirrors to direct a laser beam
towards a target and are tested on their knowledge of geometric and physical optics.
<br>
<a href="https://www.soinc.org/optics-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Wind Power </summary>
<p>
Teams construct a blade assembly device prior to the tournament that is designed to capture wind power and
complete a written test on the principles of alternative energy.
<br>
<a href="https://www.soinc.org/wind-power-c">Link to SOINC page</a>
</p>
</details>
<h3> Technology and Engineering </h3>
<details>
<summary> Flight </summary>
<p>
Prior to the tournament, teams will construct, collect data on test flights,
analyze and optimize a free flight rubber-powered aircraft to achieve maximum time aloft.
<br>
<a href="https://www.soinc.org/flight-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Robot Tour </summary>
<p>
Teams design, build, program and test one Robotic Vehicle to navigate a track to
reach a target at a set amount of time as accurately and efficiently as possible.
<br>
<a href="https://www.soinc.org/robot-tour-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Scrambler </summary>
<p>
Teams design, build, and test a mechanical device, which uses the energy from a falling mass
to transport an egg along a straight track as quickly as possible and stop as close to the center
of a Terminal Barrier (TB) without breaking the egg.
<br>
<a href="https://www.soinc.org/scrambler-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Tower </summary>
<p>
Teams will design and build a Tower (Structure) meeting requirements specified in these rules
to achieve the highest structural efficiency.
<br>
<a href="https://www.soinc.org/tower-c">Link to SOINC page</a>
</p>
</details>
<h3>Inquiry and Nature of Science
</h3>
<details>
<summary> Codebusters </summary>
<p>
Teams will cryptanalyze and decode encrypted messages using
cryptanalysis techniques for historical and modern advanced ciphers.
<br>
<a href="https://www.soinc.org/codebusters-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Experimental Design </summary>
<p>
Participants will be tested on their ability to design, conduct, and report the findings of an experiment entirely on-site.
<br>
<a href="https://www.soinc.org/experimental-design-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Fermi Questions </summary>
<p>
Teams provide answers to a series of “Fermi Questions”;
science related questions that seek fast, rough estimates of a quantity, which is either difficult or impossible
to measure directly.
<br>
<a href="https://www.soinc.org/fermi-questions-c">Link to SOINC page</a>
</p>
</details>
<details>
<summary> Write It Do It </summary>
<p>
One participant will write a description of an object and how to build it.
The other participant will attempt to construct the object from this description.
<br>
<a href="https://www.soinc.org/write-it-do-it-c">Link to SOINC page</a>
</p>
</details>
</div>
<p> Event descriptions from SOINC </p>
<h2>Council and our Advisor</h2>
<hr>
<p>
Dr. Weinstein - Advisor
<br><br>
Pranav Sitaraman - President
<br>
Abhay Bhaskar - President
<br>
Thomas Catuosco - Vice President
<br>
Sanjay Ravishankar - Vice President
<br>
Atri Bhattacharjee - Secretary
<br>
Srishti Hazra - Treasurer
<br>
Harinarayan AsooriSriram - Event Director for MCASO
</p>
<!-- Start menu -->
<!-- <div id="circularMenu1" class="circular-menu circular-menu-left active">
<a class="floating-btn" onclick="document.getElementById('circularMenu1').classList.toggle('active');">
<i class="fa fa-arrow-right"></i>
</a>
<menu class="items-wrapper">
<a href class="menu-item fa fa-home"></a>
<a href="https://www.hudson.k12.oh.us" class="menu-item fa fa-graduation-cap"></a>
<a href="/SciOly-Website-Template/contact.html" class="menu-item fa fa-envelope"></a>
<a href="/SciOly-Website-Template/links.html" class="menu-item fa fa-link"></a>
</menu>
</div> -->
<footer>
Template from luke2m on Github
</footer>
</body>
</html>