-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
636 lines (632 loc) · 24.3 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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<title>Hack The World</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lexend+Deca&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.12.0/css/all.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css"
/>
<link rel="stylesheet" href="assets/css/Faq-by-pomdre-1.css" />
<link rel="stylesheet" href="assets/css/Faq-by-pomdre.css" />
<link rel="stylesheet" href="assets/css/Footer-Basic.css" />
<link rel="stylesheet" href="assets/css/Navigation-Clean.css" />
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="assets/css/Team-Clean.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/img/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/img/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/img/favicon-16x16.png"
/>
<link rel="manifest" href="assets/img/site.webmanifest" />
<link rel="shortcut icon" href="assets/img/favicon.ico" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="msapplication-config" content="assets/img/browserconfig.xml" />
<meta name="theme-color" content="#ffffff" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VBFZR9BEQZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VBFZR9BEQZ');
</script>
</head>
<body>
<div class="alert alert-danger alert-server py-3 px-5 m-0" role="alert">
<strong>Announcement:</strong> Hack The World is being prolonged until early 2022. Sorry for any inconveniance.
</div>
<a id="mlh-trust-badge" style="display:block;max-width:100px;min-width:60px;position:fixed;right:50px;top:0;width:10%;z-index:10000" href="https://mlh.io/seasons/2022/events?utm_source=na-hackathon&utm_medium=TrustBadge&utm_campaign=2022-season&utm_content=white" target="_blank"><img src="https://s3.amazonaws.com/logged-assets/trust-badge/2022/mlh-trust-badge-2022-white.svg" alt="Major League Hacking 2022 Hackathon Season" style="width:100%"></a>
<nav
class="navbar navbar-light navbar-expand-md navigation-clean"
>
<div class="container">
<div class="navbar-brand" style="margin-left: -70px"">
<a class="nav-item" href="/"
><img src="assets/img/logoEarth.gif" style="width: 60px" /><img
src="assets/img/htw.svg"
style="width: 65px; padding-left: 7px"
/> </a
></div><button
data-bs-toggle="collapse"
class="navbar-toggler"
data-bs-target="#navcol-1"
style="background: rgba(255, 255, 255, 0.37); border-style: none"
>
<span class="visually-hidden">Toggle navigation</span
><span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse"
id="navcol-1"
style="margin-right: 80px"
>
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item"><a class="nav-link" href="#faq">FAQ</a></li>
<li class="nav-item">
<a class="nav-link" href="#sponsors">Sponsors</a>
</li>
</ul>
<a
class="btn btn-primary btn-lg register-btn"
role="button"
target="_blank"
href="https://4500z1h650h.typeform.com/to/sZTe36x6"
style="background: #ec8d18; color: white; border: none;"
>Register</a
>
</div>
</div>
</nav>
<div
class="container-fluid py-5"
data-aos="fade-right"
id="about"
style="padding: 48px; margin-bottom: 250px;"
><div class="about-text">
<h1
class="display-5 fw-bold"
style="
padding-bottom: 10px;
"
>
Hack The World 2021
</h1>
<p class="col-md-8 fs-4">
Join us in the world's largest student-led hackathon presented by the
<a target="_blank" href="https://neuralworks.group"
>NeuralWorks Community</a
>. For 48 hours and fully virtual, meet new people, learn new skills and
have fun while showcasing your talents!
</p>
<p class="col-md-8 fs-4" style="color: #cc3600">
Early 2022
</p>
<a
class="btn btn-secondary btn-lg"
role="button"
href="https://4500z1h650h.typeform.com/to/sZTe36x6"
style="
background: #ec8d18;
border-style: none;
box-shadow: 0px 3px 3px 0px rgb(28, 28, 28);
"
target="_blank"
>Register Now</a
>
</div>
</div>
<section style="background-color: rgb(255, 255, 255, 0.65); padding: 10%;">
<div
class="container-fluid py-5"
style="text-align: center; background: #ffffff00"
>
<div class="row" data-aos="fade-down" style="padding:120px 0;">
<h1
class="display-5 fw-bold"
style="font-size: 50px; margin-bottom: 45px"
>
Estimated Figures
</h1>
<div class="col-md">
<i class="fas fa-laugh-beam fa-7x my-3"></i>
<h2 class="fw-bold">1500+ Hackers</h2>
</div>
<div class="col-md">
<i class="fas fa-globe-americas fa-7x my-3"></i>
<h2 class="fw-bold">6 Continents</h2>
</div>
<div class="col-md">
<i class="fas fa-laptop-code fa-7x my-3"></i>
<h2 class="fw-bold">100+ Projects</h2>
</div>
</div>
<h1
class="display-5 fw-bold"
data-aos="fade-down"
style="font-size: 50px; margin-bottom: 45px"
>
The Tracks
</h1>
<p class="my-3" data-aos="fade-down" style="max-width:60%; margin:auto;">This year at HTW, the track theme is: <b>Global Problems</b><br /><br />
We look to invoke projects that solve real world problems affecting the globe.
The tracks have been split up to cover 3 different parts of the world that suffer from various problems
that need solving. We have listed some example problems but encourage you to think of your own! The tracks are:
</p>
<div
class="row"
style="padding-right: 20px; padding-left: 20px; padding-bottom: 80px"
>
<div
class="col-md-6 col-lg-4 item"
data-aos="fade-up"
style="margin: auto"
>
<i class="fas fa-globe-asia fa-6x my-3"></i>
<h3 class="name" style="font-weight: bold">APAC</h3>
<p class="description" style="font-family: Roboto, sans-serif">
Example problems:
</p>
<ul class="list-unstyled">
<li><b>Overpopulation</b></li>
<li><b>Rapid Urbanisation</b></li>
<li><b>Health Care</b></li>
<li><b>Income Inequality</b></li>
</ul>
</div>
<div
class="col-md-6 col-lg-4 item"
data-aos="fade-up"
style="margin: auto"
>
<i class="fas fa-globe-americas fa-6x my-3"></i>
<h3 class="name" style="font-weight: bold">America/Europe</h3>
<p class="description" style="font-family: Roboto, sans-serif">
Example problems:
</p>
<ul class="list-unstyled">
<li><b>Fake News</b></li>
<li><b>Education Prices</b></li>
<li><b>Health Care</b></li>
<li><b>Immigration</b></li>
</ul>
</div>
<div
class="col-md-6 col-lg-4 item"
data-aos="fade-up"
style="margin: auto"
>
<i class="fas fa-globe-africa fa-6x my-3"></i>
<h3 class="name" style="font-weight: bold">Africa/Middle East</h3>
<p class="description" style="font-family: Roboto, sans-serif">
Example problems:
</p>
<ul class="list-unstyled">
<li><b>Education</b></li>
<li><b>Food Distribution</b></li>
<li><b>Corruption</b></li>
<li><b>Vaccine Distribution</b></li>
</ul>
</div>
</div>
</div>
<section id="sponsors">
<div class="container text-center" style="padding-bottom: 100px">
<h2
class="display-5 text-center fw-bold"
data-aos="fade-down"
style="font-size: 50px; margin-bottom: 50px"
>
Sponsored By
</h2>
<div data-aos="fade-up">
<div>
<h2 class="display-6 text-center fw-bold">Co-Host</h2>
<a href="https://www.hestia.academy" target="_blank"><img class="s-logo" src="assets/img/hestia-logo.png"/></a>
<h2 class="display-6 text-center fw-bold" style="display:none;">Diamond</h2>
<h2 class="pt-5 display-6 text-center fw-bold">Gold</h2>
<a href="https://www.elastic.co" target="_blank"><img class="s-logo" src="assets/img/elastic-logo.svg" width="400"/></a>
<a href="https://symbl.ai" target="_blank"><img class="s-logo" src="assets/img/symblai-logo.svg" width="400"/></a>
<h2 class="pt-5 display-6 text-center fw-bold">Silver</h2>
<a href="https://www.hyperx.com" target="_blank"><img class="s-logo" src="assets/img/hyperx-logo.png" width="400" /></a>
<h2 class="pt-5 display-6 text-center fw-bold">Bronze</h2>
<a href="https://www.postman.com" target="_blank"><img class="s-logo" src="assets/img/postman-logo.svg" width="400" /></a>
<h2 class="pt-5 display-6 text-center fw-bold">Authentication Partner</h2>
<a href="https://sawolabs.com/hackathon/HackTheWorld/redeemnow/" target="_blank"><img class="s-logo" src="assets/img/sawo.png" width="300" /></a>
<h2 class="pt-5 display-6 text-center fw-bold">Community Partners</h2>
<img class="s-logo" src="https://static.mlh.io/brand-assets/logo/official/mlh-logo-color.svg" width="200" />
<img class="s-logo" src="assets/img/sticker-mule-logo.png" width="400" />
<img class="s-logo" src="assets/img/github-logo.svg" width="280" />
<img class="s-logo" src="assets/img/streamyard-logo.png" width="400" />
<img class="s-logo" src="assets/img/wolfram-logo.png" width="400" />
<img class="s-logo" src="assets/img/taskade-logo.png" />
<img class="s-logo" src="assets/img/echoAR-logo.webp" />
<img class="s-logo" src="assets/img/hackplus-logo.png" width="280"/>
</div>
<p>
Interested in sponsoring Hack The World? Reach out to us:
<a href="mailto:[email protected]"
>
</p>
</div>
</div>
<div
class="container-fluid py-5"
style="text-align: center; background: #ffffff00"
>
<h1
class="display-5 fw-bold"
data-aos="fade-down"
style="font-size: 50px; margin-bottom: 45px"
>
Follow us on Social Media
</h1>
<div class="row mx-5 px-5" data-aos="fade-down">
<div class="col-md">
<a target="_blank" href="https://www.instagram.com/neuralworks.group/"
><i class="fab fa-instagram fa-5x"></i></a
>
</div>
<div class="col-md">
<a target="_blank" href="https://www.linkedin.com/company/neuralworks"
><i class="fab fa-linkedin fa-5x"></i></a
>
</div>
<div class="col-md">
<a target="_blank" href="https://twitter.com/neural_works"
><i class="fab fa-twitter fa-5x"></i></a
>
</div>
<div class="col-md">
<a target="_blank" href="https://discord.gg/UQBybs4X8H"
><i class="fab fa-discord fa-5x"></i></a
>
</div>
</div>
</div>
</div>
</section>
<div class="container my-5" style="padding-bottom: 100px">
<h2
class="display-5 text-center fw-bold"
data-aos="fade-down"
style="font-size: 50px; margin-bottom: 25px"
>
The Team
</h2>
<section class="team-clean" data-aos="fade-up">
<div class="row">
<div class="col-md-3 item">
<img
class="rounded-circle"
src="assets/img/mesquare.jpeg"
style="width: 150px"
/>
<h3 class="name">Michael Beer</h3>
<p class="title">General Manager</p>
<div class="social">
<a href="#"></a><a href="#"></a><a href="#"></a>
</div>
</div>
<div class="col-md-3 item">
<img
class="rounded-circle"
src="assets/img/lilyb.jpeg"
style="width: 150px"
/>
<h3 class="name">Pauline Brusset</h3>
<p class="title">HEAD OF RELATIONS</p>
</div>
<div class="col-md-3 item">
<img
class="rounded-circle"
src="assets/img/jude.jpg"
style="width: 150px"
/>
<h3 class="name">Jude Molloy</h3>
<p class="title">HEAD OF FINANCE</p>
</div>
<div class="col-md-3 item">
<img
class="rounded-circle"
src="assets/img/job2.jpg"
style="width: 150px"
/>
<h3 class="name">Job Madi</h3>
<p class="title">HACKER RELATIONS</p>
</div>
</div>
<div class="row">
<div class="col-md-3 item">
<img
class="rounded-circle"
src="assets/img/anurag.jpg"
style="width: 150px"
/>
<h3 class="name">Anurag Sharma</h3>
<p class="title">HACKER RELATIONS</p>
</div>
<div class="col-md-3 item">
<img
class="rounded-circle"
src="assets/img/crislana.jpeg"
style="width: 150px"
/>
<h3 class="name">Crislana Rafael</h3>
<p class="title">SPONSOR RELATIONS</p>
</div>
<div class="col-md-3 item">
<img
class="rounded-circle"
src="assets/img/avinash.png"
style="width: 150px"
/>
<h3 class="name"><strong>Avinash U.</strong></h3>
<p class="title">sponsor relations</p>
</div>
<div class="col-md-3 item">
<img
class="rounded-circle"
src="assets/img/saanvi.jpg"
style="width: 150px"
/>
<h3 class="name">Saanvi T.</h3>
<p class="title">Sponsor Relations</p>
</div>
</div>
<div class="row">
<div class="col-md-3 item">
<img
class="rounded-circle"
src="assets/img/cyra.png"
style="width: 150px"
/>
<h3 class="name">Cyra Alesha</h3>
<p class="title">Flow Team</p>
</div>
<div class="col-md-3 item">
<img
class="rounded-circle"
src="assets/img/maya.jpeg"
style="width: 150px"
/>
<h3 class="name">Mayya Panfilova</h3>
<p class="title">Flow Team</p>
</div>
<div class="col-md-3 item">
<img
class="rounded-circle"
src="assets/img/sarin.jpeg"
style="width: 150px"
/>
<h3 class="name">Saket Sarin</h3>
<p class="title">platform team</p>
</div>
</div>
</section>
</div>
<section id="faq" style="padding: 2px; margin: 100px 11px">
<h2
class="text-center fw-bold"
data-aos="fade-down"
style="font-size: 50px; margin-bottom: 25px"
>
FAQ (Frequently Asked Question's)
</h2>
<br />
<div class="container">
<div class="faqelement" data-aos="zoom-in-up">
<button
class="btn btn-primary faq on"
type="button"
style="box-shadow: none; color: rgb(0, 0, 0)"
>
What is a Hackathon?
</button>
<div class="panel">
<p>
A hackathon is an invention marathon. Thoughts become things.
Attendees work in teams of up with other people to hack together a
prototype to solve a problem; this could be a web app,
hardware-hack, or something completely different.
</p>
</div>
</div>
<br />
<div class="faqelement" data-aos="zoom-in-up">
<button
class="btn btn-primary faq on"
type="button"
style="box-shadow: none; color: rgb(0, 0, 0)"
>
Is Hack The World Free?
</button>
<div class="panel">
<p>Yes. Free for spectators. Free for participants.</p>
</div>
</div>
<br/>
<div class="faqelement" data-aos="zoom-in-up">
<button
class="btn btn-primary faq on"
type="button"
style="box-shadow: none; color: rgb(0, 0, 0)"
>
Who can participate? Do I need coding experience?
</button>
<div class="panel">
<p>
Not at all! People from all levels and background are welcome to
register for our event. We will ensure you are paired up with
more experienced coders for the best possible experience. Teams
will also need people with brilliant ideas.
</p>
</div>
</div>
<br />
<div class="faqelement" data-aos="zoom-in-up">
<button
class="btn btn-primary faq on"
type="button"
style="box-shadow: none; color: rgb(0, 0, 0)"
>
What can I make?
</button>
<div class="panel">
<p>
Anything! A website, a mobile app, a game, a physical hardware
project. Anything. If it fits into a hackathon track, even
better!
</p>
</div>
</div>
<br />
<div class="faqelement" data-aos="zoom-in-up">
<button
class="btn btn-primary faq on"
type="button"
style="box-shadow: none; color: rgb(0, 0, 0)"
>
Do I need a team?
</button>
<div class="panel">
<p>
While you do have the option of working alone, HackTheWorld is a
team event so working with others is encouraged. There are a few
ways to find teammates: You can pick your team from people you
already know, post in our meetup group to other members, find a
team member via our DevPost, meet them at a pre-hackathon info
sessions (details on events page), or at the kickoff party. We
are also creating new ways of matching team members together.
This will be released later!
</p>
</div>
</div>
<br />
<div class="faqelement" data-aos="zoom-in-up">
<button
class="btn btn-primary faq on"
type="button"
style="box-shadow: none; color: rgb(0, 0, 0)"
>
Will there be prizes?
</button>
<div class="panel">
<p>Absolutely. Check out our devpost page for details.</p>
</div>
</div>
<br />
<div class="faqelement" data-aos="zoom-in-up">
<button
class="btn btn-primary faq on"
type="button"
style="box-shadow: none; color: rgb(0, 0, 0)"
>
Are you using the same terrible judging system that other
hackathons use?
</button>
<div class="panel">
<p>
At HTW, we are taking a new approach to judging. If you
ever been to a hackathon before, you know that the judging, well
sucks... Favouring fancy looking UI's and nice presentations
over real working solutions. We are going to change that. We are
going to use a rubric grading system that will be announced at
the opening ceremony. Also, we are looking to have many judges therefore
allowing us to spend more time comparing each project. At HTW,
the best team really does win!
</p>
</div>
</div>
<br />
<div class="faqelement" data-aos="zoom-in-up">
<button
class="btn btn-primary faq on"
type="button"
style="box-shadow: none; color: rgb(0, 0, 0)"
>
Where will this event take place?
</button>
<div class="panel">
<p>
The event will be totally online, hosted on our
<a href="https://discord.gg/UQBybs4X8H">discord server</a>. Some
events may be on other platforms, but these will be arranged at
a later time! The event will be streamed everywhere, including:
Twitch, Youtube, Zoom.
</p>
</div>
</div>
<p style="margin-top: 15px; padding: 5px" data-aos="zoom-in-up">
Any other question? Reach out to us:
<a href="mailto:[email protected]"
>
</p>
</div>
</section>
</section>
<footer class="footer-basic">
<div class="social">
<a target="_blank" href="https://www.instagram.com/neuralworks.group/"
><i class="icon ion-social-instagram"></i></a
><a target="_blank" href="https://www.linkedin.com/company/neuralworks"
><i class="icon ion-social-linkedin"></i></a
><a target="_blank" href="https://twitter.com/neural_works"
><i class="icon ion-social-twitter"></i></a
><a target="_blank" href="https://discord.gg/UQBybs4X8H"
><i class="fab fa-discord"></i
></a>
</div>
<p class="copyright"><a href="https://neuralworks.group/">A NeuralWorks Project </a></p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/Faq-by-pomdre.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script src="assets/js/script.min.js"></script>
</body>
</html>