forked from xpoes123/mosfet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
481 lines (425 loc) · 21 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="google-site-verification" content="z1SMr4-V5hDkXb9MQg9zT5cy2m75rgPLdNjv_rVQz1w" />
<title>MOSFET Science Bowl 2025</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link href="https://cdn.lineicons.com/2.0/LineIcons.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="static/css/slicknav.css">
<link rel="stylesheet" type="text/css" href="static/css/menu_sideslide.css">
<link rel="stylesheet" type="text/css" href="static/css/animate.css">
<link rel="stylesheet" type="text/css" href="static/css/main.css">
<script src="static/js/rocket-loader.min.js"></script>
<!--favicon stuff-->
<link rel="apple-touch-icon" sizes="180x180" href="static/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="static/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="static/favicon/favicon-16x16.png">
<!-- <link rel="manifest" href="static/favicon/site.webmanifest">-->
<link rel="mask-icon" href="static/favicon/safari-pinned-tab.svg" color="#ff0027">
<link rel="shortcut icon" href="static/favicon/favicon.ico">
<meta name="apple-mobile-web-app-title" content="MOSFET SciBowl">
<meta name="application-name" content="MOSFET SciBowl">
<meta name="msapplication-TileColor" content="#ffc40d">
<meta name="msapplication-config" content="static/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- white text outlines
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Outline</title>
<style>
.outlined-text {
color: white; /* The text color */
text-shadow:
-1px -1px 0 black, /* Top-left shadow */
1px -1px 0 black, /* Top-right shadow */
-1px 1px 0 black, /* Bottom-left shadow */
1px 1px 0 black; /* Bottom-right shadow */
font-weight: bold; /* Optional: make it bold */
}
</style> -->
</head>
<body>
<header id="header-wrap">
<div class="menu-wrap">
<div class="menu navbar">
<div class="menu-list navbar-collapse">
<ul class="onepage-nev navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#header-wrap">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#team">Team</a>
</li>
<!--<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>-->
</ul>
</div>
</div>
<button class="close-button" id="close-button"><i class="lni lni-close"></i></button>
</div>
<nav class="navbar navbar-expand-lg fixed-top scrolling-navbar menu-bg">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#main-navbar"
aria-controls="main-navbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
<span class="lni lni-menu"></span>
<span class="lni lni-menu"></span>
<span class="lni lni-menu"></span>
</button>
<div class="navbar-brand">
<img src="static/img/mosfet_2_f.png" style="height: 100%; width: auto">
</div>
</div>
<div class="collapse navbar-collapse" id="main-navbar">
<ul class="navbar-nav mr-auto w-100 justify-content-end clearfix">
<li class="nav-item" id="open-button">
<a class="nav-link">
<i class="lni lni-menu"></i>
</a>
</li>
</ul>
</div>
</div>
<ul class="mobile-menu">
<li>
<a href="#header-wrap">Home</a>
</li>
<li>
<a href="#services">About</a>
</li>
<li>
<a href="#team">Team</a>
</li>
<!--<li>
<a href="#contact">Contact</a>
</li>-->
</ul>
</nav>
</header>
<section class="intro" style="background: url(static/img/mosfet_background_2025_2.png) no-repeat; background-size: cover">
<div class="container">
<div class="row text-center">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="heading-count">
<h2 style="word-wrap: break-word">M.O.S.<wbr>F.E.T.<br/></h2>
<!-- <img src="static/img/mosfet_1_f.png"> text-shadow: 0 2px 2px rgba(0, 0, 0, .5); -->
<h5 style=" word-wrap: break-word; margin: 0 auto; text-align: center;">
Midwinter Online ScienceBowl
<wbr>
For Emerging Teams
</h5>
</div>
<div style="margin: 2em;">
<p style="font-size: 150%;"> <b> Regular Division - 18 January 2025 </b></p><br>
<p style="font-size: 150%;"> <b> Advanced Division - 11 January 2025 </b></p> <br> <br> <br>
<a href = https://drive.google.com/drive/u/7/folders/1BxisCTCG_w1bcxPP179FZPdycHiyOdZi> <h5 style="color:Cyan; font-size: 160%"> <b>2024 Tournament packets can be found here </b> </h5> </a>
</div>
<!--<div class="section-info" style="margin-top: 80px">
<iframe src="https://discord.com/widget?id=744724495016656976&theme=dark" width="105%" height="500"
allowtransparency="true" frameborder="0"
sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>-->
</div>
<div class="col-md-12 col-sm-12 col-xs-12" style="margin-top: 2em">
<!--<h2 style="margin-bottom: .2em">Competition Countdown:</h2>
<div class="row countdown justify-content-center">
<div id="clock" class="time-count"></div>
</div> -->
<!--<a ="#contact" class="btn btn-common">Contact Us</a>
<a ="#team" class="btn btn-border">About Us</a>-->
<a ="#services" class="target-scroll page-scroll"><i class="lni lni-chevron-down"></i></a>
</div>
</div>
</div>
</section>
<section id="services" class="section-padding">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-8 col-xs-12 text-center">
<!--<h6 class="subtitle">
What We Do
</h6>-->
<!--<h2 class="section-title">
About
</h2>-->
</div>
</div>
<div class="row" style="font-size: 120%">
<div class="col-lg-4 col-md-6 col-xs-12 fadeInUp" data-animation="fadeInUp">
<div class="services-item">
<div class="icon">
<i class="lni lni lni-question-circle"></i>
</div>
<h5><b>Website Overview</b></h5>
<p align="justify">Welcome to the MOSFET 2025 website! This is a collection of links for tournament logistics;
including rules, information, schedules, brackets, and more.
Please ensure that all team members have the link to this website saved, as we will update the website with links and information leading up to and during the tournament.
<br> <br> Looking to register for the tournament? Please check out our announcement doc, which has the registration links and procedures, as well as plenty of other important information.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 fadeInUp" data-animation="fadeInUp" data-delay="300">
<div class="services-item">
<div class="icon">
<i class="lni lni lni-link"></i>
</div>
<h5><b>Important Links</b></h5>
<ul style="text-align: left; font-size: 110%">
<li>- <a
href="https://docs.google.com/document/d/10GDW1q3EY2J15kMdRtLCc-hI1BT_FpuDi3OoWB5mYMg/preview"
target="_blank">2025 Tournament Announcement & Information</a></li>
<li>- <a
href="https://docs.google.com/document/d/1M15W6n_bIfXuXmWOjRqCB_JKbeOFunrtNN66cWPdsHY/preview"
target="_blank">2025 Tournament Rules</a></li> <br>
<li>- <a href=https://docs.google.com/forms/d/e/1FAIpQLSe1Zz_MyoJkD_ivDREEQeA3FjF_kYRkdrAfp5zFh6dlEo8gKg/viewform?usp=sf_link"
target="_blank">Regular Division Team Registration</a></li>
<li>- <a href=https://docs.google.com/forms/d/e/1FAIpQLScnxe5vQP7yxF0VyceWWdMLlRig4WGyDNp6qde9YQaE_rzF4w/viewform?usp=sf_link"
target="_blank">Advanced Division Team Registration</a></li> <br>
<p style="text-align: left;font-size:110%"> <u>Regular Division</u></p>
<ul style="text-align: left;">
<a> Brackets/Schedules Coming Soon</a> <br> <br>
<!-- EXAMPLE FOR ADDING TOURNEY HUB LINK BACK IN: <a href="https://docs.google.com/spreadsheets/d/17lOlUAQD6D3PLQ7lxZvJK5lkmUM81HAwXlZUJ_BBYj4/edit#gid=0"
target="_blank"> 2024 MOSFET Regular Tournament Hub</a> <br> <br> -->
<p style="text-align:left;font-size:110%"> <u>Advanced Division</u></p>
<ul style="text-align: left;">
<a> Brackets/Schedules Coming Soong</a> <br>
</ul>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 fadeInUp" data-animation="fadeInUp" data-delay="600">
<div class="services-item">
<div class="icon">
<i class="lni lni lni-network"></i>
</div>
<h5><b>Tournament Information</b></h5>
<p align="justify">MOSFET will be an online regionals-difficulty tournament, with two divisions:
<br> <br> The first, Regular, is intended primarily for novice teams, and will be held on Saturday, January 18, 2025.
The second, Advanced, is more for teams that qualify for Nationals but generally do not advance far into double elimination, and will be held a week earlier, on January 11, 2025.
More details on the division split can be found on the announcement/info doc
<br> <br> We aim to recreate the experience of in-person science bowl, with live buzzing and head-to-head matches.
A more detailed list of alterations to official science bowl rules can be found on our rules doc.
</p>
</div>
</div>
</div>
</div>
</section>
<section id="team" class="section-padding">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-8 col-xs-12 text-center">
<h2 class="section-title">
Directors
</h2>
</div>
</div>
<div class="row">
<!-- Harry Jin -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="team-img">
<img class="img-fluid" src="static/img/team/HarryJin.png" alt="">
</div>
<div class="info-text">
<h3>Harry Jin</h3>
<p><i>Middleton High School</i></p>
</div>
</div>
</div>
<!-- Daniel Lu -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="team-img">
<img class="img-fluid" src="static/img/team/Daniel_resized.jpg" alt="">
</div>
<div class="info-text">
<h3>Daniel Lu</h3>
<p><i>Interlake High School</i></p>
</div>
</div>
</div>
<!-- Shripriya Kalbhavi -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="team-img">
<img class="img-fluid" src="static/img/team/Shripriya_Resized.jpg" alt="">
</div>
<div class="info-text">
<h3>Shripriya Kalbhavi</h3>
<p><i>Lynbrook High School</i></p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="writing-team" class="section-padding">
<div class="container">
<!-- Writing Team Title -->
<div class="row justify-content-center">
<div class="col-md-8 col-lg-8 col-xs-12 text-center">
<h2 class="section-title">
Writing Team
</h2>
</div>
</div>
<!-- Writing Team Members -->
<div class="row">
<!-- Suzuko Ohshima -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Suzuko Ohshima</h3>
<p><i>North Hollywood High School</i></p>
</div>
</div>
</div>
<!-- Shreyas Ekanathan -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Shreyas Ekanathan</h3>
<p><i>Lexington High School</i></p>
</div>
</div>
</div>
<!-- Yunyi Ling -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Yunyi Ling</h3>
<p><i>Montgomery Blair High School</i></p>
</div>
</div>
</div>
<!-- Selena Yang -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Selena Yang</h3>
<p><i>Lynbrook High School</i></p>
</div>
</div>
</div>
<!-- Kian Dhawan -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Kian Dhawan</h3>
<p><i>Montgomery Blair High School</i></p>
</div>
</div>
</div>
<!-- Owen Weisenberger -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Owen Weisenberger</h3>
<p><i>Middleton High School</i></p>
</div>
</div>
</div>
<!-- Michael Wei -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Michael Wei</h3>
<p><i>The Frazer School</i></p>
</div>
</div>
</div>
<!-- Jianyu Wang -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Jianyu Wang</h3>
<p><i>Lynbrook High School</i></p>
</div>
</div>
</div>
<!-- Vishnu Mangipudi -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Vishnu Mangipudi</h3>
<p><i>Lakeside School</i></p>
</div>
</div>
</div>
<!-- Evan Zhang -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Evan Zhang</h3>
<p><i>Montgomery Blair High School</i></p>
</div>
</div>
</div>
<!-- Ian Chen -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Ian Chen</h3>
<p><i>Lynbrook High School</i></p>
</div>
</div>
</div>
<!-- Allen Fei -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Allen Fei</h3>
<p><i>Lexington High School</i></p>
</div>
</div>
</div>
<!-- Katherine Wang -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Katherine Wang</h3>
<p><i>Montgomery Blair High School</i></p>
</div>
</div>
</div>
<!-- Matthew Yuan -->
<div class="col-sm-6 col-md-6 col-lg-4">
<div class="team-item text-center">
<div class="info-text">
<h3>Matthew Yuan</h3>
<p><i>Lynbrook High School</i></p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer-area section-padding">
<div class="container" style="text-align: center">
<img style="width: 60%" src="static/img/mosfet_1_f.png" alt="" >
</div>
</footer>
<a href="#" class="back-to-top">
<i class="lni lni-chevron-up"></i>
</a>
<script src="static/js/jquery-min.js" type="6e140622a3620ce2054c4f93-text/javascript"></script>
<script src="static/js/popper.min.js" type="6e140622a3620ce2054c4f93-text/javascript"></script>
<script src="static/js/jquery.countdown.min.js" type="6e140622a3620ce2054c4f93-text/javascript"></script>
<script src="static/js/menu.js" type="6e140622a3620ce2054c4f93-text/javascript"></script>
<script src="static/js/classie.js" type="6e140622a3620ce2054c4f93-text/javascript"></script>
<script src="static/js/scrolling-nav.js" type="6e140622a3620ce2054c4f93-text/javascript"></script>
<script src="static/js/jquery.nav.js" type="6e140622a3620ce2054c4f93-text/javascript"></script>
<script src="static/js/jquery.easing.min.js" type="6e140622a3620ce2054c4f93-text/javascript"></script>
<script src="static/js/wow.js" type="6e140622a3620ce2054c4f93-text/javascript"></script>
<script src="static/js/jquery.slicknav.js" type="6e140622a3620ce2054c4f93-text/javascript"></script>
<script src="static/js/main.js" type="6e140622a3620ce2054c4f93-text/javascript"></script>
<script src="static/js/rocket-loader.min.js" data-cf-settings="6e140622a3620ce2054c4f93-|49" defer=""></script>
</body>
</html>