-
Notifications
You must be signed in to change notification settings - Fork 86
/
index.html
1687 lines (1648 loc) · 87 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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hack In The North</title>
<meta name="description" content="Hack in the North 5 Website.">
<link rel="stylesheet" href="./css/style-prev.css">
<link rel="stylesheet" href="./css/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/starrysky.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="./fonts/CircularStdBold/font.css">
<link rel="shortcut icon" href="assets/favicon_HINT5.png">
<!-- Facebook -->
<meta property="og:url" content="https://www.hackinthenorth.com" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Hack In The North" />
<meta property="og:description" content="India's best student held hackathon" />
<meta property="og:image" content="./images/logo_coloured_white_text.svg" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="Team HINT">
<meta name="twitter:site" content="https://hackinthenorth.com">
<meta name="twitter:title" content="Hack In The North - India's Biggest Student Hackathon">
<meta name="twitter:description" content="Hack in the North, a student-held hackathon in India will host it's fifth edition this March. We have invited a
legion of over 1000 hackers over the past four years to collaborate, create and bring to life an idea, in 36 hours.">
<meta name="twitter:image:src" content="./images/logo_coloured_white_text.svg">
<meta name="twitter:image:width" content="312">
<meta name="twitter:image:height" content="141">
<link rel="stylesheet" href="./css/owl.carousel.min.css" />
<link rel="stylesheet" href="./css/owl.theme.default.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-154644271-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-154644271-1');
</script>
<script src="https://code.jquery.com/jquery-2.2.4.js" integrity="sha256-iT6Q9iMJYuQiMWNd9lDyBUStIq/8PuOW33aOqmvFpqI="
crossorigin="anonymous"></script>
<script defer async src="https://apply.devfolio.co/v2/sdk.js"></script>
<style>
@font-face {
font-family: 'CeraPro-black';
src: url(fonts/CeraPro-Black.ttf) format("truetype");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'CeraPro-bold';
src: url(fonts/CeraPro-Bold.ttf) format("truetype");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'CeraPro-regular';
src: url(fonts/CeraPro-Regular.ttf) format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'CeraPro-Thin';
src: url(fonts/CeraPro-Thin.ttf) format("truetype");
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'CeraPro-medium';
src: url(fonts/CeraPro-Medium.ttf) format("truetype");
font-weight: 500;
font-style: normal;
}
#content div h1,
#com-content div h1,
.faq-head h1,
.judge-head h1,
h1.what,
.theme-header,
.theme-list-heading {
font-family: 'CeraPro-bold';
}
#content div p,
#com-content div p,
.judge-position {
font-family: 'CeraPro-regular';
}
.link p,
.link a,
.collapsible,
.later p,
.content,
#lady p,
a.nav-link,
.judge-name {
font-family: 'CeraPro-medium';
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top main-nav c25" id="mainNav">
<div class="container-fluid" style="padding-right:0; padding-left:0%;">
<!-- <a class="navbar-brand js-scroll-trigger navbar-title" href="#"><img src="images/Text-Logo.png" class="navbar-img"></a> -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"
style="padding: 0px 0px; margin: 0px 0px; border: none;">
<img style="width:60px; padding: 0px 0px; margin: 0px 0px; " src="./images/nav.svg">
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto navbar-list">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#themes">Themes</a>
</li> -->
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#faq">FAQ</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#prize-section">Prizes</a>
</li> -->
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#sponsors-page">Sponsors</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="team.html">Team</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://discord.gg/5HYbA8rWcp">Discord</a>
</li> -->
<!-- <li class="nav-item">
<a class="nav-link js-scroll-trigger" href="projects.html">Projects</a>
</li> -->
</ul>
</div>
</div>
</nav>
<div class="home-page" style="overflow: hidden;">
<div class="heading">
<div class="container">
<div class="stars" style="z-index: 0;">
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
<div class="star"></div>
</div>
</div>
</div>
<div class="main-landing-text">
<div class="hint" style="z-index: 4;">
<div class="row">
<div class="col-sm-12" style="text-align: center;">
<h1 class="what heading-hackinthenorth">
WE ARE BACK!
</h1>
<!-- <h2>1st Apr - 3rd Apr</h2> -->
<img src="./images/hackinthenorth..svg" class="we-back-img" alt="we are back">
</div>
</div>
</div>
</div>
<img src="./images/Landing/back.svg" alt="" class="mountain" id="back" style="z-index: 1;">
<img src="./images/Landing/mid.svg" alt="" class="mountain" id="mid" style="z-index: 2;">
<img src="./images/Landing/front.svg" alt="" class="mountain" id="front" style="z-index: 4;">
</div>
<div class="about" id="about">
<div id="test" style="width:30vw">
<svg class="dot-line" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="612px" height="792px" viewBox="0 0 612 792"
enable-background="new 0 0 612 792" xml:space="preserve">
<path class="path" fill="none" stroke="white" stroke-width="3" stroke-linejoin="round" stroke-miterlimit="10" d="M0 40
C20.5 80.5 18.5 161 205 226
C336 274.5 396.356 169.5 359.5 116
C326.089 67.5 205 74.4 205 226
C208.667 288.333 251.7 408.2 394.5 389" />
<path class="dashed" fill="none" stroke="#0c0c0c" stroke-width="5" stroke-linejoin="round"
stroke-miterlimit="10" d="M0 40
C20.5 80.5 18.5 161 205 226
C336 274.5 396.356 169.5 359.5 116
C326.089 67.5 205 74.4 205 226
C208.667 288.333 251.7 408.2 394.5 389" />
</svg>
<div class="ball"></div>
</div>
<!-- <img src="./images/what is/dark_triangle.svg" alt="" id="tri-dark"> -->
<div class="row" id="content">
<div class="col-sm-12">
<!-- <h1 class="what hint-text" style="margin-bottom: 0;">Atlassian</h1>
<h6 class="what presents-text">presents</h6> -->
<div class="fancy_heading_container" >
<h1 class="fancy_heading" style="width:80%; left: 10%;">HINT 6.0</h1>
<h1 class="fancy_heading_shadow" style="width:80%; left: 10%;">HINT 6.0</h1>
</div>
<p class="what-content">
Hack in the North, is the largest student-run hackathon in India
<br>
organized by the students of IIITA.
<br>
<br>
Since the inception of HINT in 2016, we have experienced remarkable growth with the increasing participation and enthusiasm of Problem solvers and Developers all over the country.
<br>
<br>
Our mission is to empower students from different backgrounds and encourage them to dream big and build a project from scratch.
<br>
<br>
So join the community, from the links below
<br>
</p>
<div class="row text-center">
<div style="z-index: 4;">
<a class="dev dev-btn apply-button" data-hackathon-slug="hack-in-the-north" data-button-theme="dark-inverted" href="https://hint5.devfolio.co" target="blank">Apply with Devfolio</a>
</div>
</div>
<br> <br>
<div class="row text-center">
<div class="col-12" style="z-index: 5">
<a class="dev dev-btn" href=https://discord.gg/5HYbA8rWcp" target="blank"><i class='fab fa-discord'
style='font-size:24px;vertical-align: middle;'></i> Join Discord</a>
</div>
</div>
</div>
</div>
<div class="dates-div">
<!-- <img src="./images/date-apr.png" style="max-height: 60vh;max-width: 95%;"> -->
</div>
<!-- <div class="judge-section" id="judges">
<div class="row mt-4">
<div class="col-12 judge-head text-center">
<div class="fancy_heading_container">
<h1 class="fancy_heading">PAST JUDGES</h1>
<h1 class="fancy_heading_shadow">PAST JUDGES</h1>
</div>
</div>
<div class="judges-cards-section mt-4">
<div class="row mt-4">
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="judge-card">
<div class="inner-part">
<div class="center"><div class="circ_gradient"><img src="./images/judges/karan.jpg" alt="speaker-img"></div></div>
<p class="judge-position">Senior Architect & Developer Evangelist at Red Hat</p>
</div>
<p class="judge-name">Karan Singh</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="judge-card">
<div class="inner-part">
<div class="center">
<div class="circ_gradient"><img src="./images/judges/Nirbhik-Jangid.jpeg" alt="speaker-img"></div>
</div>
<p class="judge-position">Founder - The Dapp List | Previously - Polygon</p>
</div>
<p class="judge-name">Nirbhik Jangid</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="judge-card">
<div class="inner-part">
<div class="center"><div class="circ_gradient"><img src="./images/judges/ranjana.png" alt="speaker-img"></div></div>
<p class="judge-position">Assistant Prof. &
Coordinator NewGen
IEDC at IIIT</p>
</div>
<p class="judge-name">Ranjhana Vyas</p>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="judge-card">
<div class="inner-part">
<div class="center"><div class="circ_gradient"><img src="./images/judges/anagh.jpg" alt="speaker-img"></div></div>
<p class="judge-position">Software Engineer at Qualcomm</p>
</div>
<p class="judge-name">Anagh G S</p>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- <div class="row speaker-section">
<div class="container-fluid speaker-header-container">
<div class="fancy_heading_container text-center" >
<h1 class="fancy_heading" style="left: 15%; text-align: center;">PAST SPEAKERS</h1>
<h1 class="fancy_heading_shadow" style="left: 15.2%; text-align: center;">PAST SPEAKERS</h1>
</div>
</div>
<div class="container speaker-box">
<div class="owl-carousel owl-theme">
<div class="item">
<div class="row">
<div class="col-8" style="padding: 0;">
<div class="row">
<p class="youtube-speaker youtube-type-1">
April 1, 2022<br>
YouTube LIVE 5:00pm
</p>
</div>
<div class="row">
<img src="./images/speaker/Akshay Saini.png" width="100%">
</div>
</div>
<div class="col-4">
<div class="row">
<p class="role-speaker role-type-1">
Speaker
</p>
</div>
<div class="row">
<img class="speaker_img" src="./images/speaker/akshay saini.jpg" width="100%" alt="Akshay Saini">
</div>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col-lg-2 col-md-2 col-3 dash-speaker dash-type-1">
</div>
<div class="col-lg-6 col-md-6 col-9 des-speaker-container" style="padding-left: 0px;">
<p class="des-speaker des-type-1">
Software engineer at Uber, YouTuber with 172k subscribers. He is known for his course of JavaScript named "Namaste Javascript" on YouTube. Former software engineer at Paytm with keen interest Digital Marketing, SEO, SMM, Blogging and Web Security.
</p>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-8" style="padding: 0;">
<div class="row">
<p class="youtube-speaker">
April 1, 2022<br>
YouTube LIVE 7:00pm
</p>
</div>
<div class="row">
<img src="./images/speaker/Rohas Nagpal.png" width="100%">
</div>
</div>
<div class="col-4">
<div class="row">
<p class="role-speaker">
Speaker
</p>
</div>
<div class="row">
<img class="speaker_img" src="./images/speaker/rohas nagpal.jpg" width="100%" alt="Rohas Nagpal">
</div>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col-lg-2 col-md-2 col-3 dash-speaker">
</div>
<div class="col-lg-6 col-md-6 col-9 des-speaker-container" style="padding-left: 0px;">
<p class="des-speaker">
Chief Blockchain Architect at the Hybrid Finance (HyFi) Blockchain, started his career in the early 1990s as a hacker and co-founded Asian School of Cyber Laws in 1999. In 2015, he moved into the blockchain space and co-founded Primechain in 2016. To help his daughters in understanding the crypto world he wrote "Future Money Playbook" for them.
</p>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-8" style="padding: 0;">
<div class="row">
<p class="youtube-speaker youtube-type-2">
April 2, 2022<br>
YouTube LIVE 6:00pm
</p>
</div>
<div class="row">
<img src="./images/speaker/Santosh Yadav.png" width="100%">
</div>
</div>
<div class="col-4">
<div class="row">
<p class="role-speaker role-type-2">
Speaker
</p>
</div>
<div class="row">
<img class="speaker_img" src="./images/speaker/santosh yadav.jpg" width="100%" alt="Santosh Yadav">
</div>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col-lg-2 col-md-2 col-3 dash-speaker dash-type-2">
</div>
<div class="col-lg-6 col-md-6 col-9 des-speaker-container" style="padding-left: 0px;">
<p class="des-speaker des-type-2">
Currently working as Frontend Developer at avodaq AG. Google Developer Expert for Angular, GitHub Star, Auth0 Ambassador, Software Consultant, Open source contributor, Co-Founder of This is Learning. Started his channel "Tech Talks with Santosh" during covid-19 pandemic.
</p>
</div>
</div>
</div>
<div class="item">
<div class="row">
<div class="col-8" style="padding: 0;">
<div class="row">
<p class="youtube-speaker youtube-type-3">
December 19,2020<br>
YouTube LIVE 8:45pm
</p>
</div>
<div class="row">
<img src="./images/speaker/AnupamDagar.png" width="100%">
</div>
</div>
<div class="col-4">
<div class="row">
<p class="role-speaker role-type-3">
Speaker | Judge
</p>
</div>
<div class="row">
<img class="speaker_img" src="./images/speaker/Dagar.JPG" width="100%" alt="Anupam Dagar">
</div>
</div>
</div>
<div class="row" style="margin-top: 30px;">
<div class="col-lg-2 col-md-2 col-3 dash-speaker dash-type-3">
</div>
<div class="col-lg-6 col-md-6 col-9 des-speaker-container" style="padding-left: 0px;">
<p class="des-speaker des-type-3">
Software Engineer at Deutsche Telekom Digital Labs.
Former Campus Expert at GitHub Education, Research Assistant at NTU, Singapore.
Worked as a Software Developer intern at Hasura, Open Source Developer at FOSSASIA.
Delivered talks in conferences across San Francisco, Berlin and Singapore.
</p>
</div>
</div>
</div>
</div>
</div>
</div> -->
</div>
<div class="main-commit">
<div id="com-content">
<div class="fancy_heading_container">
<h1 class="fancy_heading">COMMITMENT</h1>
<h1 class="fancy_heading_shadow">COMMITMENT</h1>
</div>
<div class="container-fluid">
<div class="row commit-row">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6 com-txt neo-para">
<p style="margin-left: 10%;">At Hack In The North, we create an environment that brings developers together irrespective of their gender, race, sexual orientation, socioeconomic background or ethnicity.
</p>
<br>
<p style="margin-left: 10%;">Ever since its inception, over the years, we have strived to make sure that women get a chance to showcase their experience with all fairness.
</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<img src="./images/Commitment/comm11.png" class="neo-img">
<p class="neo">Meet NEO</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6 com-txt para_invi">
<p>At Hack In The North, we create an environment that brings developers together irrespective of their gender, race, sexual orientation, socioeconomic background or ethnicity.
</p>
<br>
<p>Ever since its inception, over the years, we have strived to make sure that women get a chance to showcase their experience with all fairness.
</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6 team-img">
<img src="./images/Commitment/comm21.png" class="neo-img">
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6 com-txt2">
<p class="coc-above">
From the second iteration of our event, girls had a direct entry to any and all girls’ teams and the best performing girls’ team received special prizes and swags from Hack in the North. And we took it a step further from North 3.0, and reserved 20% of the seats for female participants.
</p>
<br>
<p><a class="coc" href="https://devfolio.co/code-of-conduct" target="_blank">See Our
Code of Conduct here</a>
</p>
</div>
<div class="col-sm-12" style="z-index: 1;">
<img src="./images/Commitment/commitment-grid1.jpg" alt="" style="width: 80%;margin-left: 10%; margin-top: 70px;">
</div>
<div class="col-sm-12" id="brochure">
<img src="./images/Sponsor_us/background_dotted_line.svg" alt="" class="line">
<div class="brochure-box flex-container">
<!-- <div class="ribbon blue-box"><img src="./images/Sponsor_us/ribbon.svg" alt=""></div> -->
<div class="blue-box brch">
<div class="link">
<p class="broch-txt1">Want to sponsor Hack In The North 6.0?</p>
<p class="broch-txt2">Here's the brochure <a href="https://drive.google.com/file/d/1IXjXFANEnQbrsD3qfc1UcEnRK3gepBfn/view?usp=drivesdk" style="font-size: 1em;">[email protected]</a></p>
<!-- <div class="broch-btn">
<button type="button" class="brochure_button"><a href="">DOWNLOAD BROCHURE<img src="images/Sponsor_us/download.svg" width="25px" style="margin-left: 10px;"></img></button>
</div> -->
</div>
</div>
<!-- <div class="blue-box dot">
<img src="./images/Sponsor_us/circle_square_pattern.svg" alt="">
</div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sponsorship">
<div class="row">
<!-- <div class="col-sm-12" id="female-pic" >
<img src="./images/Commitment/commitment-grid.jpg" alt="">
</div> -->
<!-- <div class="col-sm-12" id="brochure">
<img src="./images/Sponsor_us/background_dotted_line.svg" alt="" class="line">
<div class="brochure-box flex-container">
<div class="ribbon blue-box"><img src="./images/Sponsor_us/ribbon.svg" alt=""></div>
<div class="blue-box brch">
<div class="link">
<p>Want to sponsor Hack In The North ?<br>Shoot us an E-mail <a href="mailto:[email protected]" style="font-size: 1em;">[email protected]</a></p>
</div>
</div>
<div class="blue-box dot">
<img src="./images/Sponsor_us/circle_square_pattern.svg" alt="">
</div>
</div>
</div> -->
<!-- <div class="time-line" id="timeline">
<div class="fancy_heading_container" style="text-align: center;">
<h1 class="fancy_heading">TIMELINE</h1>
<h1 class="fancy_heading_shadow">TIMELINE</h1>
</div>
<div class="row time-svg">
<div class="col-12" style="padding: 0; margin-bottom: 10%;" >
<img src="./images/timeline-web.svg" alt="" class="sch">
</div>
<div class="col-12" style="padding: 0;" id="tim-mobile">
<img src="./images/timeline-phone.svg" alt="" class="sch-mob">
</div>
</div>
</div> -->
<!----------- Schedule ---------->
</div>
</div>
</div>
<div class="schedule-back">
<p style="opacity: 0.05; margin-bottom: 0px;">SCHEDULE</p>
<div class="schedule-front" id="test" >SCHEDULE</div>
<div class="col-12" style="padding: 0; margin-bottom: 10%;" >
<img src="./images/Schedule-web.svg" alt="" class="sch">
</div>
</div>
<br><br><br><br><br>
<!-- <div id="faq">
<div class="row">
<div class="up-curve col-sm-12">
<img src="./images/faq/faq_top_curve.svg" alt="">
</div>
<div class="faq col-sm-12">
<div class="row">
<div class="col-sm-12 faq-head">
<h1>F<span class="faq-dot">.</span> A<span class="faq-dot">.</span> Q<span class="faq-dot">.</span> </h1>
<img src="./images/faq/faq_question_marks.svg" alt="" id="q-mark">
</div>
<div class="col-sm-12">
<div class="row" id="faq-sec">
<div class="col-md-5 col-sm-12" id="lady">
<img src="./images/faq/faq_bandi.svg" alt="" class="bandi">
<p>Have any more Questions? <br> Reach out to us at any time <br><br>
<a href="mailto:[email protected]" target="_top">[email protected]</a> <br><a
href="https://www.facebook.com/HackInTheNorth" target="_blank">facebook.com/HackInTheNorth</a>
</p>
</div>
<div class="col-md-7 col-sm-12">
<div class="row faq-column">
<div class=></div>
<div class="faq-collapsible"></div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">Why Hacka-demic? </button>
<div class="content">
<p>HINT 5 could not be organized adhering to the pandemic. To bridge the gap, Team HINT will host
Hacka-demic, a promotional event that will help you get away from the boredom caused by lockdown
and bring out the hacker in you.</p>
</div>
</div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">What is the team size for Hacka-demic?</button>
<div class="content">
<p>The team size can range from 2 to 4 members</p>
</div>
</div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">Is Hacka-demic going to be an annual event organized
by the team?</button>
<div class="content">
<p>It is a one-time event introduced to fill in the void created due to the pandemic.</p>
</div>
</div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">Is it a replacement of HINT 5?</button>
<div class="content">
<p>No, Hacka-demic is a promotional event organized by the HINT team.</p>
</div>
</div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">Are there separate prizes for the girl teams in
Hacka-demic?</button>
<div class="content">
<p>HINT believes in promoting diversity and inclusiveness, so there is a special prize for girl
teams to encourage participation.</p>
</div>
</div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">Are there going to be themes for Hacka-demic?</button>
<div class="content">
<p>This is an open track hackathon, we encourage you to build anything of your choice still, we
will be releasing the themes soon to give you an idea of what could be built.</p>
</div>
</div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">We will get extra points for implementing our idea
similar to themes?</button>
<div class="content">
<p>There are no extra points for implementing the themes given, every idea will be given equal
weightage</p>
</div>
</div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">Is there a provision for partial selection of members
of a team ?</button>
<div class="content">
<p>No, there is no such provision. Selection of a team is done considering all it's members.
However the team members can apply as individuals and then form a team after selection.</p>
</div>
</div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">What if I don’t want to present my hack?</button>
<div class="content">
<p>Unfinished or unimpressive (so you think) projects should be presented anyway!
Presenting your hack gives you a chance to be proud of what you’ve done, and a
constructive perspective of where you should be headed next.</p>
</div>
</div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">What if I don’t have a team or an idea?</button>
<div class="content">
<p>Not to worry, most people don’t! We’ll have team formation and ideation events
geared towards helping you find people to work with.</p>
</div>
</div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">What if I've never been to a hackathon
before?</button>
<div class="content">
<p>Then we're so glad HINT will be your first ever! It’s helpful to have some
programming or technical experience, but it’s not a requirement. We’ll have talks,
mentors and workshops to help you with your project.</p>
</div>
</div>
<div class="faq-collapsible">
<button class="collapsible" id="faq-question">Can I start working on my hack before the
event?</button>
<div class="content">
<p>No. In the interest of fairness, students should not be working on their projects
before Hack in the North begins and we do not allow participants to work on
pre-existing projects. However, you can familiarize yourself with all the tools and
technologies you intend to use beforehand!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 later">
<p id="more-info">Have any more Questions? <br> Reach out to us at any time <br><br>
[email protected]<br>facebook.com/HackInTheNorth
</p>
</div>
</div>
<div class="bottom-curve col-sm-12"><img src="./images/faq/faq_bottom_curve.svg" alt=""></div>
</div>
</div> -->
<div id="faq">
<div class="container-fluid faq-box" style="z-index:1">
<h2 class="faq-heading">Frequently Asked Questions</h2>
<div class="row" style="padding-bottom: 10%;" >
<div class="faq-collapsible col-sm-12 col-md-6 faques">
<button class="collapsible" id="faq-question" ><i class="iconclass fas fa-caret-right"></i> What is the criteria for participating in the event?</button>
<div class="content">
<p>
<span class="text-background-transparent">Ans.</span>
The only criteria is that the participant should be a student and not a working professional.
</p>
</div>
</div>
<div class="faq-collapsible col-sm-12 col-md-6 faques">
<button class="collapsible" id="faq-question" ><i class="iconclass fas fa-caret-right"></i> Is it a theme based event?</button>
<div class="content">
<p>
<span class="text-background-transparent">Ans.</span>
No, the event is not theme based. However, we have special prizes for teams who build something based on custom problem statements.
</p>
</div>
</div>
<div class="faq-collapsible col-sm-12 col-md-6 faques">
<button class="collapsible" id="faq-question" ><i class="iconclass fas fa-caret-right"></i> Can we register as a team? If so, how many members can a team have?</button>
<div class="content">
<p>
<span class="text-background-transparent">Ans.</span>
Yes, a team can have 2 - 4 members.
</p>
</div>
</div>
<div class="faq-collapsible col-sm-12 col-md-6 faques">
<button class="collapsible" id="faq-question" ><i class="iconclass fas fa-caret-right"></i> Will there be participation certificates/goodies?</button>
<div class="content">
<p>
<span class="text-background-transparent">Ans.</span>
Yes, participation certificates and goodies will be rewarded to all the participants.
</p>
</div>
</div>
<div class="faq-collapsible col-sm-12 col-md-6 faques">
<button class="collapsible" id="faq-question" ><i class="iconclass fas fa-caret-right"></i> Is building on old projects / submitting past projects allowed?</button>
<div class="content">
<p>
<span class="text-background-transparent">Ans.</span>
We encourage you to submit projects only prepared in the duration of the hackathon.
However, if you decide to submit an existing project then check out our code of conduct.
</p>
</div>
</div>
<div class="faq-collapsible col-sm-12 col-md-6 faques">
<button class="collapsible" id="faq-question" ><i class="iconclass fas fa-caret-right"></i> What is the registration procedure?</button>
<div class="content">
<p>
<span class="text-background-transparent">Ans.</span>
Registrations will take place at Devfolio, one has to fill a form to register for the event.
</p>
</div>
</div>
<div class="faq-collapsible col-sm-12 col-md-6 faques">
<button class="collapsible" id="faq-question" ><i class="iconclass fas fa-caret-right"></i> How can we get updates? </button>
<div class="content">
<p>
<span class="text-background-transparent">Ans.</span>
For updates you can join our discord server, the link for the same is above.
</p>
</div>
</div>
<div class="faq-collapsible col-sm-12 col-md-6 faques">
<button class="collapsible" id="faq-question" ><i class="iconclass fas fa-caret-right"></i> Is the hackathon open for people from all over the world?</button>
<div class="content">
<p>
<span class="text-background-transparent">Ans.</span>
Yes, students from all around the world are welcome to participate.
</p>
</div>
</div>
</div>
</div>
<img src="./images/Sponsor_us/background_dotted_line.svg" alt="" class="faq-line">
</div>
<div class="container-fluid sponsors sponsor-section" id="prize-section">
<!-- <div class="row" style="margin-bottom: 5%;">
<div class="col-12 text-center">
<h1 class="what">Prizes</h1>
</div>
</div>
<div class="prize-page">
<div class="row prize-section">
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="prize-box">
<div class="image-dabba" style="height: 60%">
<div class="image-ka-text">
<img src = './images/Prizes/10k.png' class = 'prize-ka-image'>
</div>
</div>
<div class="prize-number">
1st Prize
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="prize-box">
<div class="image-dabba" style="height: 60%">
<div class="image-ka-text">
<img src = './images/Prizes/7k.png' class = 'prize-ka-image'>
</div>
</div>
<div class="prize-number">
2nd Prize
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="prize-box">
<div class="image-dabba" style="height: 60%">
<div class="image-ka-text">
<img src = './images/Prizes/4k.png' class = 'prize-ka-image'>
</div>
</div>
<div class="prize-number">
3rd Prize
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="prize-box">
<div class="image-dabba" style="height: 60%">
<div class="image-ka-text">
<img src = 'images/Prizes/boat1.webp' class = 'prize-ka-image'>
</div>
</div>
<div class="prize-number">
4th Prize
<div class="prize-name">
Boat 1000 Speakers
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="prize-box">
<div class="image-dabba" style="height: 60%">
<div class="image-ka-text">
<img src = 'images/Prizes/ghost.png' class = 'prize-ka-image' id="ghost">
</div>
</div>
<div class="prize-number">
5th Prize
<div class="prize-name">
Ghost Anti-Theft Bags
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="prize-box">
<div class="image-dabba" style="height: 60%">
<div class="image-ka-text">
<img src = 'images/Prizes/5.png' class = 'prize-ka-image'>
</div>
</div>
<div class="prize-number girls">
Best All Girls Team
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 polulu-prize">
<div class="prize-box">
<div class="image-dabba" style="height: 60%">
<div class="image-ka-text">
<img src = './images/Prizes/2k.png' class = 'prize-ka-image'>
</div>
</div>
<div class="prize-number girls">
Best Girls Team
</div>
</div>
</div>
</div>
</div> -->
<!-- <div class="row prizes_box" >
<div class="col-12 text-center">
<div class="fancy_heading_container">
<h2 class="fancy_heading">PAST PRIZES</h2>
<h2 class="fancy_heading_shadow">PAST PRIZES</h2>
</div>
</div>
</div> -->
<!-- <div class="prize-page special-prize">
<div class="row prize-section">
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="prize1-box">
<div class="special-image">
<img src="./images/Prizes/1st.png" alt="sponsor-image" class="prize_logo">
</div>
<div class="image-dabba">
<div>
<img src='./images/Prizes/60k.png' class='prize-ka-image' style="margin-top: 10%;">
</div>
</div>
<div class="prize1-number" style="margin-top: 10%;">
Winner
</div>
<img src="./images/Prizes/1st_glow.svg" alt="glow1" class="glow">
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="prize1-box">
<div class="special-image">
<img src="./images/Prizes/2nd.png" alt="sponsor-image" class="prize_logo">
</div>
<div class="image-dabba">
<div>
<img src='./images/Prizes/50k.png' class='prize-ka-image' style="margin-top: 10%;">
</div>
</div>
<div class="prize1-number" style="margin-top: 10%;">
Runner-Up
</div>
<img src="./images/Prizes/2nd_glow.svg" alt="glow1" class="glow">