-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1052 lines (971 loc) · 67.7 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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!-- ONLINE EDITION -->
<!--
,----..
/ / \ .--.--. ,---, ,----..
/ . : / / '. .' .' `\ / / \
. / ;. \ : /`. / ,---.' \ | : :
. ; / ` ; | |--` | | .`\ |. | ;. /
; | ; \ ; | : ;_ : : | ' |. ; /--`
| : | ; | '\ \ `. | ' ' ; :; | ;
. | ' ' ' : `----. \' | ; . || : |
' ; \; / | __ \ \ || | : | '. | '___
\ \ ', / / /`--' /' : | / ; ' ; : .'|
; : / '--'. / | | '` ,/ ' | '/ :
\ \ .' `--'---' ; : .' | : /
`---` | ,.' \ \ .'
'---' `---`
-->
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<head>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<link rel="stylesheet" type="text/css"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.min.css">
<link rel="icon" href="assets/img/osdhack.png" type="image/png">
<title>OSDHACK'23</title>
<meta name="description" content="OSDHACK 2023: BACK TO THE FUTURE!" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="apple-touch-icon" href="assets/favicons/apple-touch-icon.png">
<link rel="manifest" href="assets/favicons/site.webmanifest">
<meta name="theme-color" content="#1b4481">
<style>
#discord:hover {
background-color: transparent;
border: 1px solid #1b4481;
}
</style>
</head>
<body>
<div id="body-container" style="overflow-x: hidden; overflow-y: hidden; position:relative">
<div id="cover" class="section">
<div class="content">
<div id="cover-desktop">
<div class="navbar-wrap">
<div class="navbar">
<a href="index.html" class="navbar-btn hidden-mobile">
<h4 class="navbar-txt">Home</h4>
</a>
<a href="#about" class="navbar-btn">
<h4 class="navbar-txt">About</h4>
</a>
<a href="#prizes" class="navbar-btn">
<h4 class="navbar-txt">Prizes</h4>
</a>
<!-- <a href="#faq" class="navbar-btn">
<h4 class="navbar-txt">Faq</h4>
</a> -->
<!-- <a href="#sponsors" class="navbar-btn">
<h4 class="navbar-txt">Sponsors</h4>
</a> -->
<a href="rules.html" class="navbar-btn apply hidden-mobile">
<h4 class="navbar-txt no-underline">Rules & FAQ</h4>
</a>
</div>
</div>
<img src="assets/img/JIIT_LogoWhite.png" class="logo" style="left: 120px; width: 70px">
<img src="assets/img/osdhack.png" class="logo" />
<img src="assets/img/centerOfExcellenceLogo.png" class="logo" style="left: 205px; width: 100px; height: 100px; top: 4px;">
<div id="page-title">
<!-- <h1 id="title-header">OSDHACK 2023</h1> -->
<h2 id="title-sub1" style="margin-top: 0;padding-top: 0 ;font-size: 18px;padding-bottom: 0;">
OPEN SOURCE DEVELOPERS COMMUNITY</h2>
<h4 style="padding-top: 0;font-size: 14px;">Jaypee Institute Of Information Technology</h4>
<h4 style="padding-top: 10;font-size: 14px;padding-bottom: 25px;padding-top: 15px;">presents
</h4>
<img id="title-header" src="assets/img/osdhack-title.png" />
<!-- <img id="title-header-outline" src="./assets/img/Outline_Text.svg" /> -->
<h4 id="title-sub"> BACK TO THE FUTURE</h4>
<h4 id="title-date" style="margin-top: 0;">April 21-24, 2023</h4>
<a href="https://discord.gg/HRj5JFeHVq" target="_blank">
<button id="discord"
style="font-family: LemonMilkMedium;margin-top:20px;border:none;padding: 10px 25px;border-radius: 3px;background-color: #1b4481;color: white;">
Discord Invite
</button>
</a>
<div class="devfolio_but">
<div class="apply-button" data-hackathon-slug="osdhack23" data-button-theme="light"
style="height: 44px; width: 312px"></div>
</div>
</div>
</div>
<div id="cover-mobile">
<div class="menu">
<button id="menu-btn" style="border: none;background-color: transparent;"
class="hamburger hamburger--collapse" type="button">
<!-- <span class="hamburger-box">
<span class="hamburger-inner"></span>
</span> -->
<div class="container" onclick="myFunction(this)">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
</button>
<div id="menu-items" class="navbar">
<div class="menu-row">
<a href="index.html" class="navbar-btn">
<h4 class="navbar-txt">Home</h4>
</a>
<a href="#about" class="navbar-btn">
<h4 class="navbar-txt">About</h4>
</a>
</div>
<div class="menu-row">
<a href="#prizes" class="navbar-btn">
<h4 class="navbar-txt">Prizes</h4>
</a>
<!-- <a href="#sponsors" class="navbar-btn">
<h4 class="navbar-txt">Sponsors</h4>
</a> -->
<!-- <a href="rules.html" class="navbar-btn">
<h4 class="navbar-txt no-underline">Rules & FAQ</h4>
</a> -->
</div>
</div>
</div>
<img src="assets/img/osdhack.png" class="logo" />
<!-- <h1 id="title-header">OSDHACK 2023</h1> -->
<img id="title-header" src="" />
<h2>Open Source Developer's COMMUNITY</h2>
<h2 style="padding-top: 0;font-size: 14px;">Jaypee Institute Of Information Technology</h3>
<h5 id="presents"
style="margin-bottom: 0;font-weight: 100;margin-top: 0;font-family: LemonMilkMedium;">
PRESENTS</h5>
<h4 id="title-sub" style="font-size: 30px;font-weight: 500">OSDHACK'23</h4>
<h4 id="title-sub">BACK TO THE FUTURE</h4>
<h4 id="title-date">April 21-24, 2023</h4>
<div class="more-footer" style="display: flex;
justify-content: center;
align-items: center;
align-content: center;
flex-wrap: wrap;
flex-direction: column;">
<div class="icon-group">
<a target="_blank" href="https://www.instagram.com/osdcjiit/"> <img width="48px"
class="social-icon" src="assets/socials/instagram.svg" /> </a>
<a target="_blank" href="mailto:[email protected]"><img width="48px"
class="social-icon" src="assets/socials/mail.svg" /></a>
<!-- <a target="_blank" href="https://code.OSDHACK.org/"> <img class="social-icon" src="assets/socials/code.svg"/></a> -->
<!-- <a target="_blank" href="https://medium.com/OSDHACK-stories"> <img class="social-icon" src="assets/socials/medium.svg"/></i> </a> -->
<a target="_blank" href="https://twitter.com/osdcjiit"> <img width="48px"
class="social-icon" src="assets/socials/twitter.svg" /></a>
<a target="_blank" href="https://www.linkedin.com/company/osdcjiit/">
<svg xmlns="http://www.w3.org/2000/svg" width="44" height="44"
style="position: relative; top: -2px; border-radius: 15%;" fill="#001d55"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
<br>
<a href="https://discord.gg/HRj5JFeHVq" target="_blank">
<button id="discord" class="discord_but_mobile"
style="font-family: LemonMilkMedium;margin-top:20px;border:none;padding: 10px 25px;border-radius: 3px;background-color: #1b4481;color: white;">
Discord Invite
</button>
</a>
</div>
<div>
<a href="rules.html" target="_blank">
<button id="discord" class="rules_but"
style="font-family: LemonMilkMedium;margin-top:20px;border:none;padding: 10px 25px;border-radius: 3px;background-color: #1b4481;color: white;">
Rules & FAQ
</button>
</a>
<div class="devfolio_but_mobile">
<div class="apply-button" data-hackathon-slug="osdhack23" data-button-theme="light"
style="height: 44px; width: 312px"></div>
</div>
</div>
</div>
</div>
<div>
<img src="assets/img/Buildings.svg" class="building medium1" />
<img src="assets/img/Prudential.svg" class="building small1" />
</div>
</div>
</div>
<img id="train" class="reset" src="assets/img/Train.svg" />
<div id="tracks" class="section">
</div>
<div id="speakers" class="section">
<!-- <img class="building" id="upper-left" src="assets/img/building_a.svg" />
<img class="building" id="upper-right" src="assets/img/building_b.svg" /> -->
<h1 class="header" id="about">About</h1>
<div class="speaker-heads" style="display:flex;justify-content: center ;align-items: center ;border-radius: 10px;margin-bottom:50px;padding:70px 15pxs;font-size: 20px;
position: relative;
margin: auto;
max-width: 700px;
margin-top: 30px;
margin-bottom: 50px;">
<h3 style="font-size: 20px;">OSDHack 2023 is an online hackathon being organised by the Open Source
Developers Community of JIIT, Noida. It is a 48-hour long congregation of like-minded hackers and
tech enthusiasts where participants will brainstorm and build on their idea.
</h3>
</div>
<h1 class="header" id="prizes">Prizes</h1>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:70px 15px;background-color: rgba(255,255,255,0.4);width:75%;margin-left: 12%;">
<h3 style="font-size: 24px;">
<div class="card-container">
<div style="display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;">
<div class="prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img class="prize-img" src="assets/img/2.png" style="">
<h3 class="prize-value" style="margin-top: 10px;">2nd Prize<br>12000 INR</h3>
</div>
<div class="prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img class="prize-img" src="assets/img/1.png" style="">
<h3 class="prize-value" style="margin-top: 10px;">1st Prize<br>15000 INR</h3>
</div>
<div class="prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img class="prize-img" src="assets/img/3.png" style="">
<h3 class="prize-value" style="margin-top: 10px;">3rd Prize<br>9000 INR</h3>
</div>
</div>
<br>
<div>
<div>
<div class="mini-prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img src="assets/img/trophy.png"
style="width: 100%; height: auto; max-height: 110px; width: 110px; margin-bottom: 10px; transition: transform 0.3s ease;">
<h5 style="margin-top: 10px; color: #001d55;">CTF<br>1500 INR<br>POOL PRIZE</h5>
</div>
<div class="mini-prize-card"
style="flex: 1; display: inline-block; margin: 20px; padding: 20px; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease;">
<img src="assets/img/trophy.png"
style="width: 100%; height: auto; max-height: 110px; width: 110px; margin-bottom: 10px; transition: transform 0.3s ease;">
<h5 style="margin-top: 10px; color: #001d55;">MYSTERIOUS EVENT<br>1500 INR<br>POOL PRIZE</h5>
</div>
</div>
</div>
</div>
<style>
.card-container:hover img {
transform: translateY(-5px);
}
</style>
</h3>
</div>
<h1 class="header">Speakers</h1>
<div class="wrapper-flex" id="coordinators">
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 0px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 60px;
height: 201px;
">
<img style="height: 120px;" src="assets/img/GauravSehrawat.jpeg" alt="">
<a href="https://www.linkedin.com/in/igauravsehrawat" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Gaurav Sehrawat</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">Global Solutions Architect - Verifone</h4>
<h4 style="color: #c71239;padding-bottom: 10px;">(ALUMNUS - JIIT)</h4>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="#1b4481"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 0px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 60px;
height: 201px;
">
<img style="height: 120px;" src="assets/img/PrashantMishra.jpeg" alt="">
<a href="https://www.linkedin.com/in/prashantpm20" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Prashant Mishra</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">Software Engineer Intern - Accuknox</h4>
<h4 style="color: #c71239;padding-bottom: 10px;">(3rd year - JIIT)</h4>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="#1b4481"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<div>
<img src="assets/img/Buildings.svg" class="building medium2" />
<img src="assets/img/Prudential.svg" class="building small2" />
<img src="assets/img/Prudential.svg" class="building small3" />
</div>
<h1 class="header">HACKATHON SCHEDULE </h1>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:70px 15px;background-color: rgba(255,255,255,0.4);width:75%;font-family: Verdana, Geneva, Tahoma, sans-serif;margin-left: 12%;">
<!-- <h3 style="font-size: 24px;">TO BE ANNOUNCED</h3> -->
<div>
<ul>
<li>
<div>
<time><b>Tuesday, 11 April 2023: </b></time>
<br>
<p> → <b>12:00 PM</b> Registration Starts
<br><br>
</p>
</div>
</li>
<li>
<div>
<time><b>Tuesday, 20 April 2023: </b></time>
<br>
<p> → <b>11:59 PM</b> Registration Ends
<br><br>
</p>
</div>
</li>
<li>
<div>
<time><b>Friday, 21 April 2023: </b></time>
<br>
<p> → <b>5:00 to 7:00 PM </b><br>Opening Ceremony + Speaker Session
<br><br>
→ <b>9:00 PM </b>Hacking Period Starts
</p>
</div>
</li>
<li>
<div>
<time><b>Saturday, 22 April 2023:</b></time>
<br>
<p>
→ <b>1:00 PM</b> CTF Starts
<br><br>
→ <b>3:00 PM</b> Mid-Evaluation 1
<br><br>
→ <b>5:00 PM</b> Speaker Session 2
</p>
</div>
</li>
<li>
<div>
<time><b>Sunday, 23 April 2023:</b></time>
<br>
<p>
→ <b>11:00 AM</b> Mid-Evaluation 2
<br><br>
→ <b>3:00 PM</b> CTF Ends
<br><br>
→ <b>5:00 PM</b> Speaker Session 3
<br><br>
→ <b>7:00 PM</b> Mini-Event Starts
<br><br>
→ <b>9:00 PM</b> Hacking Period Ends
<br><br>
→ <b>10:00 PM</b> Mini-Event Ends
<br><br>
→ <b>11:00 PM</b> Project Submission Deadline
</p>
</div>
</li>
<li>
<div>
<time><b>Monday, 24 April 2023:</b></time>
<br>
<p>
→<b> 9:00 AM</b> Top-10 Teams Announcement
<br><br>
→<b> 5:00 PM</b> Top-10 Teams Project Demo & Presentation
<br><br>
→ <b>9:00 PM</b> Winners Announcement
</p>
</div>
</li>
</ul>
</div>
</div>
<h1 class="header">PARTNERS </h1>
<h3 class="header" style="font-size: 40px;background-image: none;"><b>GOLD</b> </h3>
<div style="display: flex; justify-content: space-evenly;align-items: center;flex-wrap: wrap;">
<a href="https://devfolio.co" target="_blank">
<img src="assets/img/Devfolio_Logo-Black.png" alt="DEVFOLIO LOGO" style="padding: 20px 0px;">
</a>
<a href="https://www.digitalocean.com/" target="_blank">
<img src="assets/img/DO.png" alt="DIGITAL OCEAN LOGO" style="padding: 20px 0px; height: 7.5rem; width: 90%;">
</a>
<a href="https://polygon.technology/" target="_blank">
<img src="assets/img/Polygon_Logo-Dark.png" alt="POLYGON LOGO" style=" padding: 20px 0px;">
</a>
</div>
<h3 class="header" style="font-size: 40px;background-image: none;"><b>SILVER</b> </h3>
<div style="display: flex;justify-content: space-evenly;align-items: center;flex-wrap: wrap;">
<a href="https://solana.com " target="_blank">
<img class="solana-img" src="assets/img/Solana-Colored.png" alt="SOLANA LOGO" style="padding: 20px;">
</a>
<a href="https://filecoin.io" target="_blank">
<img class="filecoin-img" src="assets/img/Filecoin Coloured White Text.png" alt="FILECOIN LOGO"
style=" padding: 20px; width: 50%;">
</a>
<a href="https://replit.com" target="_blank"><br>
<img src="assets/img/Replit-light-background.png" alt="REPLIT LOGO"
style=" padding: 20px; width: 40%;">
</a>
</div>
<h1 class="header">COORDINATORS </h1>
<h2 style="font-size: 24px; padding:40px;">Faculty In-charges</h2>
<div class="wrapper-flex" id="coordinators">
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 200px;
">
<img style="height: 120px;"
src="https://www.jiit.ac.in/sites/default/files/Vikassaxena-dir.jpeg" alt="">
<a href="https://www.jiit.ac.in/prof-vikas-saxena-0" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Prof. Vikas Saxena</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">DIRECTOR & HEAD (CSE & IT)</h4>
<img src="assets/img/profile-svg.svg"
style="width: 23px; height: 23px;background-color: #1b4481;" />
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 200px;
">
<img style="height: 120px;"
src="https://www.jiit.ac.in/sites/default/files/Dr.Manish%20Kumar%20Thakur.jpg" alt="">
<a href="https://www.jiit.ac.in/dr-manish-kumar-thakur" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Prof. Manish K. Thakur</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">Faculty Coordinator (OSDC)</h4>
<img src="assets/img/profile-svg.svg"
style="width: 23px; height: 23px;background-color: #1b4481;" />
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 200px;
">
<img style="height: 120px;"
src="https://www.jiit.ac.in/sites/default/files/CS%20Prakash%20Kumar.JPG" alt="">
<a href="https://www.jiit.ac.in/dr-prakash-kumar" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">DR. Prakash Kumar</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">ASSOCIATE DEAN OF STUDENTS</h4>
<img src="assets/img/profile-svg.svg"
style="width: 23px; height: 23px;background-color: #1b4481;" />
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</a>
</div>
</div>
</div>
</div>
<div class="wrapper-flex" id="coordinators">
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 200px;
">
<img style="height: 120px;"
src="https://www.jiit.ac.in/sites/default/files/ANITA.jpg" alt="">
<a href="https://www.jiit.ac.in/dr-anita-sahoo" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Dr. Anita Sahoo</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">ASSISTANT PROFESSOR (SENIOR GRADE)</h4>
<img src="assets/img/profile-svg.svg"
style="width: 23px; height: 23px;background-color: #1b4481;" />
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 200px;
">
<img style="height: 120px;"
src="https://www.jiit.ac.in/sites/default/files/CS%20Ankita.JPG" alt="">
<a href="https://www.jiit.ac.in/dr-ankita" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">DR. ANKITA</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">ASSISTANT PROFESSOR (SENIOR GRADE)</h4>
<img src="assets/img/profile-svg.svg"
style="width: 23px; height: 23px;background-color: #1b4481;" />
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<h2 style="font-size: 24px; padding: 40px;">Student Coordinators</h2>
<div class="wrapper-flex" id="coordinators">
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 201px;
">
<img style="height: 120px;" src="assets/img/student_coord.png" alt="">
<a href="https://www.linkedin.com/in/prarit-agrawal-8038991b7/" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Prarit Agrawal</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">Student Coordinator</h4>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="#1b4481"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
<div class="speaker-heads"
style="border-radius: 10px;margin-bottom:50px;padding:90px 15px;background-color: rgba(255,255,255,0.4);max-width:300px;min-width:300px;font-family: Verdana, Geneva, Tahoma, sans-serif;">
<div class="contact" style="padding: 5px">
<div class="speaker-img" style="
border-radius: 10px;
padding: 0px;
margin-bottom: 15px;
height: 201px;
">
<img style="height: 120px;" src="assets/img/technical_coord.png" alt="">
<a href="https://www.linkedin.com/in/arpitxjain/" target="_blank">
<h2 style="font-size: 1.7em;padding-bottom: 10px;">Arpit Jain</h2>
<h4 style="color: #c71239;padding-bottom: 10px;">Technical Coordinator</h4>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="#1b4481"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</a>
</div>
</div>
</div>
<p class="attribution in-coordinators">
<b>Venue-</b> JIIT, Sector-62<br>
<b>Email-</b> [email protected]<br>
<a href="https://discord.com/invite/HRj5JFeHVq"><b><u>Discord
Link</u></b></a> <a href="https://github.com/osdc"><b><u>Github
Link</u></b></a>
</p>
<!-- <div class="cloud-section" id="cloud-section3">
<img id="cloud-layer-a" class="cloud-layer" src="assets/img/Cloud_Layer_top.svg" />
<img id="cloud-layer-b" class="cloud-layer" src="assets/img/Cloud_Layer_top.svg" />
<img id="cloud-layer-c" class="c loud-layer" src="assets/img/Cloud_Layer_top.svg" />
</div> -->
</div>
<div id="faq" class="section" style="display:none;">
<div class="content">
<h1 class="header">Faq</h1>
<div class="row">
<div class="column">
<h2 class="faq-header"> General</h2>
<br />
<div class="question">
<span><img class="toggle" src="assets/img/red_arrow.svg"></img></span>
What is a hackathon?
</div>
<div class="answer">OSDHACK is a weekend-long event where thousands of students from around
the
world 🌎 come together to work on cool new software 🕹 and/or hardware 🛠 projects.
Websites
🖥 and mobile apps 📱 are common types of hacks, but you can build anything! Think
outside
of the box! 📦</div>
<div class="question">
<span><img class="toggle" src="assets/img/yellow_arrow.svg"></img></span>
When is OSDHACK?
</div>
<div class="answer"> This year, we will be extending OSDHACK to 3️⃣6️⃣ hours! It will start
on
Friday evening in the east coast, and end Sunday morning on the weekend of April
1️⃣8️⃣-2️⃣0️⃣ :)</div>
<div class="question">
<span><img class="toggle" src="assets/img/blue_arrow.svg"></img></span>
What's the cost 💰?
</div>
<div class="answer">Admission is free and includes mentors, workshops, $wag, resources,
and a memorable experience!</div>
<div class="question">
<span><img class="toggle" src="assets/img/red_arrow.svg"></img></span>
Where’s the schedule?
</div>
<div class="answer">We'll release a more detailed 🗓 schedule in August. For now, know that
we’re planning for opening ceremony to start Friday at 9pm EDT and for closing ceremony
to
end Sunday mid-afternoon.</div>
<div class="question">
<span><img class="toggle" src="assets/img/yellow_arrow.svg"></img></span>
But I’ve never hacked!
</div>
<div class="answer">That's totally okay! This year at OSDHACK we'll be hosting a series of
beginner workshops where you can start getting your hands 🤝 dirty with all things
hackathon-y. Those who attend the beginner workshops are also eligible for the beginner
prize! 🏅</div>
<div class="question">
<span> <img class="toggle" src="assets/img/red_arrow.svg"></img></span>
I have more questions⁉️
</div>
<div class="answer">Please email us at <a class="link" href="help%40OSDHACK.html"> <span
class="__cf_email__"
data-cfemail="5c3439302c1c343d3f3731352872332e3b">[email protected]</span>
</a>
if you've got any questions or concerns! We’d love to help you out :)</div>
<div class="question">
<span> <img class="toggle" src="assets/img/blue_arrow.svg"></img></span>
A question for you:
</div>
<div class="answer">Is a hotdog 🌭 a sandwich 🥪? Is cereal 🥣 a soup 🍲? Help our team
decide
on these cRiTIcAL questions by sending your answers to <a class="link"
href="idk%40OSDHACK.html"><span class="__cf_email__"
data-cfemail="8de4e9e6cde5eceee6e0e4f9a3e2ffea">[email protected]</span></a>
(and any other memes
you want to share). Our favorite response may win a prize! Bonus points for sending us a
floppy disk!</div>
</div>
<div class="column">
<h2 class="faq-header"> Virtual</h2>
<br />
<div class="question">
<span><img class="toggle" src="assets/img/yellow_arrow.svg"></img></span>
How does a virtual 🌐 hackathon work?
</div>
<div class="answer">We will 🅱️e announcing more details in the coming months, 🅱️ut all of
the
essential parts of our event will remain the same! You'll still get to meet other
hackers,
talk to our sponsors 💸, listen to prominent leaders 🧑💼 in tech, and win amazing
prizes
🎖!</div>
<div class="question">
<span> <img class="toggle" src="assets/img/blue_arrow.svg"></img></span>
What tech or tools should I 🅱️ring?
</div>
<div class="answer">Probably a computer 💻, some cool ideas 💡, and a lot of enthusiasm 💪
</div>
<div class="question">
<span><img class="toggle" src="assets/img/red_arrow.svg"></img></span>
Will there $till be $wag? 🤑
</div>
<div class="answer">If u reside in the United States 🇺🇸, then we'll 🚢 ship 📬 $wag to you
free of charge! Unfortunately, due to shipping restrictions we aren't able to ship $wag
internationally 😢</div>
<div class="question">
<span><img class="toggle" src="assets/img/yellow_arrow.svg"></img></span>
What if I have a slow Internet connection?
</div>
<div class="answer">You should have no issues participating in our event as long as your
Internet connection can handle the bandwidth of a standard video 🎥 call or livestream.
Just
make sure to download large SDKs or developer tools in advance!</div>
<div class="question">
<span> <img class="toggle" src="assets/img/blue_arrow.svg"></img></span>
What about hardware hacks?
</div>
<div class="answer">Unfortunately, we aren't able to provide supplies for hardware hacks
this
year 😢, but if you're really passionate, that shouldn't stop you from building them!
</div>
</div>
</div>
<div class="row">
<div class="column">
<h2 class="faq-header"> Registration</h2>
<br />
<div class="question">
<span><img class="toggle" src="assets/img/red_arrow.svg"></img></span>
Can I attend?
</div>
<div class="answer">If you are a high school 🏫 student or a college 🎓 undergraduate (JIIT
M.Eng
included) AND you are at least 13 years old, then yes!</div>
<div class="question">
<span> <img class="toggle" src="assets/img/yellow_arrow.svg"></img></span>
What if I can't attend?
</div>
<div class="answer">If you're not currently a student and you want to help 🤝 out, <a
class="link" href="https://go.OSDHACK.org/volunteer" target="_blank">sign up
here</a> to
help mentor 👨🏫👩🏫 and/or judge 👩⚖️ our hackers! If you have any questions, let us
know at <a class="link"
href="https://archive.OSDHACK.org/cdn-cgi/l/email-protection#ee9881829b809a8b8b9cae868f8d8583879ac0819c89"
target="_blank"><span class="__cf_email__"
data-cfemail="d1a7bebda4bfa5b4b4a391b9b0b2babcb8a5ffbea3b6">[email protected]</span></a>!
</div>
<div class="question">
<span><img class="toggle" src="assets/img/blue_arrow.svg"></img></span>
When is registration?
</div>
<div class="answer">
Look out for the opening of OSDHACK 2023 registration in July! This year, we'll have two
rounds of admissions: <br>
<br>Round 1️⃣ opens July 8th and closes July 24th, 🕛 11:59pm PDT.<br>
<br>Round 2️⃣ opens July 25th and closes August 7th, 🕛 11:59pm PDT.<br>
<br>Teams will be admitted by rounds, and results from Round 1️⃣ will be released before
results from Round 2️⃣. Results from each round will be released two weeks after the
round
ends and applicants will have one week to confirm.<br>
</div>
<div class="question">
<span><img class="toggle" src="assets/img/red_arrow.svg"></img></span>
Can my team apply in different rounds?
</div>
<div class="answer">Y⭕u'll need t⭕ apply in the same r⭕und as y⭕ur teammates t⭕ be
c⭕nsidered as
a team during admissions.</div>
<div class="question">
<span><img class="toggle" src="assets/img/yellow_arrow.svg"></img></span>
What if I go to JIIT?
</div>
<div class="answer">All JIIT 🏛 students will need to submit an application. If you're an
incoming JIIT freshman, you will receive automatic admission, but you'll still need to
fill
out an application to be guaranteed a spot at OSDHACK!</div>
<div class="question">
<span> <img class="toggle" src="assets/img/blue_arrow.svg"></img></span>
Is there an admissions puzzle again?
</div>
<div class="answer">༼つ ◕_◕ ༽つ༼つ ◕_◕ ༽つ༼つ ◕_◕ ༽つ</div>
</div>
<div class="column">
<h2 class="faq-header"> Tracks & Teams</h2>
<br />
<div class="question">
<span><img class="toggle" src="assets/img/yellow_arrow.svg"></img></span>
What are tracks at a hackathon? 🛤
</div>
<div class="answer">To help focus your ideation 🧠 process, we’ve developed four tracks, or
impact areas, for you to hack in. The top project within each track will be awarded a
prize
🏆. We can’t wait to see what problems you tackle with your project!</div>
<div class="question">
<span><img class="toggle" src="assets/img/blue_arrow.svg"></img></span>
How will tracks and prizes 🥇 work?
</div>
<div class="answer">You'll have the opportunity to submit your project to 1️⃣ (and only
one!) of
our tracks, making you eligible for that track prize! During our event, we'll also be
providing each track with its own set of ideation resources.</div>
<div class="question">
<span><img class="toggle" src="assets/img/red_arrow.svg"></img></span>
Do I have to submit to a track?
</div>
<div class="answer">You're not required to submit your hack to a track, but you will need to
in
order to be considered for our track prizes. Tracks are meant to enhance the hacker
experience, but if there truly isn't a track for you, don't worry! Projects submitted
without a track are still eligible for sponsor challenges and OSDHACK grand prizes
🏆🏆🏆.
</div>
<div class="question">
<span><img class="toggle" src="assets/img/yellow_arrow.svg"></img></span>
Do I have to submit a project if I attend?
</div>
<div class="answer">If you don't submit a project, you can still attend our workshops and
listen
👂 to our
awesome speakers! However, in order to receive $wag, you must submit a project.</div>
<div class="question">
<span><img class="toggle" src="assets/img/blue_arrow.svg"></img></span>
How do teams work?
</div>
<div class="answer">Your team can have up to 4️⃣ people! You can select teammates 🤼 when
you
register, or you can register
individually without specified teammates. We’ll admit by teams, so rest assured you’ll
be
able to hack with your friends!</div>
<div class="question">
<span><img class="toggle" src="assets/img/red_arrow.svg"></img></span>
What if I don’t have a team?
</div>
<div class="answer">If you don’t have a team now, that’s okay 👌! We’ll have team formation
and
ideation events geared towards helping you find people to work with.</div>
</div>
</div>
</div>
</div>
<div id="footer" class="section">
<div class="content">
<h1 class="header" style="visibility: hidden;">Footer</h1>
<div class="countdown">
<div id="countdown-border"></div>
<img src="assets/img/osdhack.png" />
<div id="countdown-right">
<p id="countdown-train-departs">THE TRAIN DEPARTS IN</p>
<div id="countdown-timer">
<div class="countdown-circle">
<p id="days" class="countdown-number"></p>
<p class="countdown-text">DAYS</p>
</div>
<p class="countdown-semicolon">:</p>
<div class="countdown-circle">
<p id="hours" class="countdown-number"></p>
<p class="countdown-text">HOURS</p>
</div>
<p class="countdown-semicolon">:</p>
<div class="countdown-circle">
<p id="minutes" class="countdown-number"></p>
<p class="countdown-text">MINUTES</p>
</div>
<p class="countdown-semicolon">:</p>
<div class="countdown-circle">
<p id="seconds" class="countdown-number"></p>
<p class="countdown-text">SECONDS</p>
</div>
</div>
<div id="countdown-status">
<p class="countdown-status-text">STATUS</p>
<p class="countdown-status-text">:</p>
<p id="countdown-status-arrived" class="countdown-ontime-text"></p>
</div>
</div>
</div>
<div class="more-footer-wrap">
<div class="more-footer">
<div class="icon-group">
<a target="_blank" href="https://www.instagram.com/osdcjiit/"> <img class="social-icon"
src="assets/socials/instagram.svg" /> </a>
<a target="_blank" href="https://www.facebook.com/groups/jiitlug/"> <img
class="social-icon" src="assets/socials/facebook.svg" /> </a>
<!-- <a target="_blank" href="mailto:[email protected]"><img class="social-icon"
src="assets/socials/mail.svg" /></a> -->
<!-- <a target="_blank" href="https://code.OSDHACK.org/"> <img class="social-icon" src="assets/socials/code.svg"/></a> -->
</div>
<p class="attribution">
<b>Venue-</b> JIIT, Sector-62<br>
<b>Email-</b> [email protected]<br>
<a
href="https://discord.com/invite/HRj5JFeHVq"><b><u>Discord Link</u></b></a> <a
href="https://github.com/osdc"><b><u>Github Link</u></b></a>
<!-- All rights reserved. <br>
Code Released under JIIT License. <br> -->
</p>
<div class="icon-group">
<!-- <a target="_blank" href="https://medium.com/OSDHACK-stories"> <img class="social-icon" src="assets/socials/medium.svg"/></i> </a> -->
<a target="_blank" href="https://twitter.com/osdcjiit"> <img class="social-icon"
src="assets/socials/twitter.svg" /></a>
<a target="_blank" href="https://www.linkedin.com/company/osdcjiit/">
<svg xmlns="http://www.w3.org/2000/svg" width="49.3" height="49.3" fill="#001d55"
style="position: relative; top: 2.7px; border-radius: 0.6rem;" class="bi bi-linkedin social-icon"
viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg>
</div>
</p>
</div>
</div>
</div>
</div>
<div>
<img src="assets/img/Buildings.svg" class="building medium3" />
<img src="assets/img/Prudential.svg" class="building small4" />
</div>
</div>
<!--
<div class="footer_blm" >
<div class="blm_slide">
<div class=blm_content>
OSDHACK stands in support of the Black Lives Matter (BLM) movement, and thanks to your help, <br> we will be splitting
<span style="color: #ffdf3f">$2,000 </span>
in donations to these causes:
</div>
<div class=blm_content>
<ul id="blm_list">
<li><a href=https://www.blackgirlscode.com/ target="_blank" style="color: #fbcdc2">Black Girls Code</a>: A non-profit organization working to provide technology education for African-American girls.</li>
<li><a href=https://www.joincampaignzero.org/ target="_blank" style="color: #fbcdc2">Campaign Zero</a>: A non-profit organization leading an effort to research and introduce policy-based solutions to police brutality in the United States.</li>
<li><a href=https://www.naacpldf.org/ target="_blank" style="color: #fbcdc2">NAACP LDF</a>: A non-profit organization fighting for racial justice through litigation, advocacy, and public education.</li>
</ul>