-
Notifications
You must be signed in to change notification settings - Fork 0
/
hackathon.html
1994 lines (1891 loc) · 79.8 KB
/
hackathon.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" />
<title>ACM USICT</title>
<link rel="icon" href="./assets/images/acm1.png" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content=">ACM Student Chapter, USICT is an official student body incepted in 2019 under the University School USICT, GGSIPU.The chapter will conduct events including programming contests, talks by renowned speakers, workshops etc"
/>
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="ACM@USICT Chapter, GGSIPU" />
<meta
itemprop="description"
content=">ACM Student Chapter, USICT is an official student body incepted in 2019 under the University School USICT, GGSIPU.The chapter will conduct events including programming contests, talks by renowned speakers, workshops etc"
/>
<meta itemprop="image" content="./assets/images/acm1.png" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="http://usict.acm.org/ACM_New" />
<meta property="og:type" content="website" />
<meta property="og:title" content="ACM@USICT Chapter, GGSIPU" />
<meta
property="og:description"
content=">ACM Student Chapter, USICT is an official student body incepted in 2019 under the University School USICT, GGSIPU.The chapter will conduct events including programming contests, talks by renowned speakers, workshops etc"
/>
<meta property="og:image" content="./assets/images/acm1.png" />
<!-- Twitter Meta Tags -->
<!-- <meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="ACM@USICT Chapter, GGSIPU" />
<meta
name="twitter:description"
content=">ACM Student Chapter, USICT is an official student body incepted in 2019 under the University School USICT, GGSIPU.The chapter will conduct events including programming contests, talks by renowned speakers, workshops etc"
/>
<meta name="twitter:image" content="./assets/images/acm1.png" /> -->
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="ACM@USICT Chapter, GGSIPU" />
<meta
name="twitter:description"
content=">ACM Student Chapter, USICT is an official student body incepted in 2019 under the University School USICT, GGSIPU.The chapter will conduct events including programming contests, talks by renowned speakers, workshops etc"
/>
<meta name="twitter:image" content="./assets/images/acm1.png" />
<link
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Poppins:wght@200&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<script
src="https://kit.fontawesome.com/d459eda8d9.js"
crossorigin="anonymous"
></script>
<link href="./assets/CSS/hackathon.css" rel="stylesheet" />
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-firestore.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.2.9/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
var firebaseConfig = {
apiKey: "AIzaSyA_pYnOglxiRzv4Dk7dIeRVVIRdRiFBa0M",
authDomain: "hackathon-4a008.firebaseapp.com",
databaseURL: "https://hackathon-4a008-default-rtdb.firebaseio.com",
projectId: "hackathon-4a008",
storageBucket: "hackathon-4a008.appspot.com",
messagingSenderId: "151067046762",
appId: "1:151067046762:web:46acd7e3deca9de34eeb13",
measurementId: "G-5VC1N3RY0Y"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
</head>
<body>
<!-- NavBar -->
<nav id="nav" class="navbar nav navbar-expand-lg sticky-top">
<div class="nav-brand">
<a href ="#">
<img
class="hackusict-logo mw-100"
src="./assets/images/acm1.png"
alt="HackUSICT logo"
/>
</a>
<a>
<img
class=""
src="https://res-2.cloudinary.com/crunchbase-production/image/upload/c_lpad,f_auto,q_auto:eco/sjcmigra2nk4slozmfnu"
width="60px"
style="margin-left: 10px"
/>
</a>
</div>
<button
style="color: #fff"
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="fa fa-bars"></span>
</button>
<!-- <div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#aboutus">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#timeline">Timeline</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#themesHack">Themes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#sponsorDivi">Sponsors</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#orgainisingTeam">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact Us</a>
</li>
</ul>
</div> -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<!-- <li class="nav-item active">
<a class="nav-link" href="./index.html">Home <span class="sr-only">(current)</span></a>
</li> -->
<li class="nav-item" onclick="aboutUsFunction()">
<a
class="nav-link"
onmouseover="this.style.color='red'"
style="cursor: pointer; color: #e8e3e3"
onmouseout="this.style.color='#e8e3e3'"
>About</a
>
</li>
<script>
function aboutUsFunction() {
var screenWidth = window.innerWidth;
console.log(screenWidth);
if (screenWidth <= 520) {
// document.body.scrollTop = 790;
document.documentElement.scrollTop = 790;
}
if (screenWidth <= 537 && screenWidth > 520) {
// document.body.scrollTop = 690;
document.documentElement.scrollTop = 690;
}
if (screenWidth <= 800 && screenWidth > 537) {
// document.body.scrollTop = 570;
document.documentElement.scrollTop = 570;
}
if (screenWidth <= 1500 && screenWidth > 800) {
// document.body.scrollTop = 620;
document.documentElement.scrollTop = 620;
}
if (screenWidth <= 1800 && screenWidth > 1500) {
// document.body.scrollTop = 650;
document.documentElement.scrollTop = 650;
}
if (screenWidth <= 3000 && screenWidth > 1800) {
// document.body.scrollTop = 700;
document.documentElement.scrollTop = 700;
}
}
</script>
<li class="nav-item" onclick="timelineFunction()">
<a
class="nav-link"
onmouseover="this.style.color='red'"
style="cursor: pointer; color: #e8e3e3"
onmouseout="this.style.color='#e8e3e3'"
>Timeline</a
>
</li>
<script>
function timelineFunction() {
var screenWidth = window.innerWidth;
console.log(screenWidth);
if (screenWidth <= 520) {
// document.body.scrollTop = 1390;
document.documentElement.scrollTop = 1390;
}
if (screenWidth <= 537 && screenWidth > 520) {
// document.body.scrollTop = 1250;
document.documentElement.scrollTop = 1250;
}
if (screenWidth <= 800 && screenWidth > 537) {
// document.body.scrollTop = 1130;
document.documentElement.scrollTop = 1130;
}
if (screenWidth <= 1500 && screenWidth > 800) {
// document.body.scrollTop = 1200;
document.documentElement.scrollTop = 1200;
}
if (screenWidth <= 1800 && screenWidth > 1500) {
// document.body.scrollTop = 1250;
document.documentElement.scrollTop = 1250;
}
if (screenWidth <= 3000 && screenWidth > 1800) {
// document.body.scrollTop = 1800;
document.documentElement.scrollTop = 1800;
}
}
</script>
<li class="nav-item" onclick="themesFunction()">
<a
class="nav-link"
onmouseover="this.style.color='red'"
style="cursor: pointer; color: #e8e3e3"
onmouseout="this.style.color='#e8e3e3'"
>Themes</a
>
</li>
<script>
function themesFunction() {
var screenWidth = window.innerWidth;
console.log(screenWidth);
if (screenWidth <= 520) {
// document.body.scrollTop = 2590;
document.documentElement.scrollTop = 2650;
}
if (screenWidth <= 537 && screenWidth > 520) {
// document.body.scrollTop = 2300;
document.documentElement.scrollTop = 2300;
}
if (screenWidth <= 800 && screenWidth > 537) {
// document.body.scrollTop = 2800;
document.documentElement.scrollTop = 2800;
}
if (screenWidth <= 1500 && screenWidth > 800) {
// document.body.scrollTop = 3000;
document.documentElement.scrollTop = 2850;
}
if (screenWidth <= 1800 && screenWidth > 1500) {
// document.body.scrollTop = 2950;
document.documentElement.scrollTop = 2950;
}
if (screenWidth <= 3000 && screenWidth > 1800) {
// document.body.scrollTop = 3200;
document.documentElement.scrollTop = 3200;
}
}
</script>
<li class="nav-item" onclick="sponsorsFunction()">
<a
class="nav-link"
onmouseover="this.style.color='red'"
style="cursor: pointer; color: #e8e3e3"
onmouseout="this.style.color='#e8e3e3'"
>Partners</a
>
</li>
<script>
function sponsorsFunction() {
var screenWidth = window.innerWidth;
console.log(screenWidth);
if (screenWidth <= 520) {
document.documentElement.scrollTop = 3600;
}
if (screenWidth <= 537 && screenWidth > 520) {
// document.body.scrollTop = 3400;
document.documentElement.scrollTop = 3200;
}
if (screenWidth <= 800 && screenWidth > 537) {
// document.body.scrollTop = 4200;
document.documentElement.scrollTop = 4100;
}
if (screenWidth <= 1500 && screenWidth > 800) {
// document.body.scrollTop = 4200;
document.documentElement.scrollTop = 3900;
}
if (screenWidth <= 1800 && screenWidth > 1500) {
// document.body.scrollTop = 4050;
document.documentElement.scrollTop = 4150;
}
if (screenWidth <= 3000 && screenWidth > 1800) {
// document.body.scrollTop = 4700;
document.documentElement.scrollTop = 4700;
}
}
</script>
<li class="nav-item" onclick="teamFunction()">
<a
class="nav-link"
onmouseover="this.style.color='red'"
style="cursor: pointer; color: #e8e3e3"
onmouseout="this.style.color='#e8e3e3'"
>Team</a
>
</li>
<script>
function teamFunction() {
var screenWidth = window.innerWidth;
console.log(screenWidth);
if (screenWidth <= 520) {
// document.body.scrollTop = 4480;
document.documentElement.scrollTop = 4220;
}
if (screenWidth <= 537 && screenWidth > 520) {
// document.body.scrollTop = 4100;
document.documentElement.scrollTop = 3970;
}
if (screenWidth <= 800 && screenWidth > 537) {
// document.body.scrollTop = 4500;
document.documentElement.scrollTop = 4450;
}
if (screenWidth <= 1500 && screenWidth > 800) {
// document.body.scrollTop = 4650;
document.documentElement.scrollTop = 4430;
}
if (screenWidth <= 1800 && screenWidth > 1500) {
// document.body.scrollTop = 5000;
document.documentElement.scrollTop = 4800;
}
if (screenWidth <= 3000 && screenWidth > 1800) {
// document.body.scrollTop = 5350;
document.documentElement.scrollTop = 5150;
}
}
</script>
<li class="nav-item" onclick="faqFunction()">
<a
class="nav-link"
onmouseover="this.style.color='red'"
style="cursor: pointer; color: #e8e3e3"
onmouseout="this.style.color='#e8e3e3'"
>FAQ</a
>
</li>
<script>
function faqFunction() {
var screenWidth = window.innerWidth;
console.log(screenWidth);
if (screenWidth <= 520) {
// document.body.scrollTop = 6000;
document.documentElement.scrollTop = 5900;
}
if (screenWidth <= 537 && screenWidth > 520) {
// document.body.scrollTop = 6000;
document.documentElement.scrollTop = 5750;
}
if (screenWidth <= 800 && screenWidth > 537) {
// document.body.scrollTop = 5200;
document.documentElement.scrollTop = 4900;
}
if (screenWidth <= 1500 && screenWidth > 800) {
// document.body.scrollTop = 4650;
document.documentElement.scrollTop = 5160;
}
if (screenWidth <= 1800 && screenWidth > 1500) {
// document.body.scrollTop = 5500;
document.documentElement.scrollTop = 5500;
}
if (screenWidth <= 3000 && screenWidth > 1800) {
// document.body.scrollTop = 5350;
document.documentElement.scrollTop = 5950;
}
}
</script>
<li class="nav-item" onclick="contactFunction()">
<a
class="nav-link"
onmouseover="this.style.color='red'"
style="cursor: pointer; color: #e8e3e3"
onmouseout="this.style.color='#e8e3e3'"
>Contact Us</a
>
</li>
<script>
function contactFunction() {
var screenWidth = window.innerWidth;
console.log(window.innerHeight);
if (screenWidth <= 520) {
document.documentElement.scrollTop = 7370;
}
if (screenWidth <= 537 && screenWidth > 520) {
document.documentElement.scrollTop = 7200;
}
if (screenWidth <= 800 && screenWidth > 537) {
document.documentElement.scrollTop = 6700;
}
if (screenWidth <= 1500 && screenWidth > 800) {
document.documentElement.scrollTop = 6380;
}
if (screenWidth <= 1800 && screenWidth > 1500) {
document.documentElement.scrollTop = 6600;
}
if (screenWidth <= 3000 && screenWidth > 1800) {
document.documentElement.scrollTop = 7100;
}
}
</script>
</ul>
</div>
</nav>
<!-- HERO hackathon page -->
<canvas class="hero-canvas" id="c"></canvas>
<div class="hero-hackathon">
<div class="hero-container">
<div class="row">
<div class="col col-xl-6 hero-left-div">
<!-- <p><img src="https://res-2.cloudinary.com/crunchbase-production/image/upload/c_lpad,f_auto,q_auto:eco/sjcmigra2nk4slozmfnu" width="60px" style="margin-top:-10px; margin-right:10px;"/>ATHON</p> -->
<p>TRELLATHON</p>
<h2 style="margin-left: 1%">
<b
>24-HOUR HACKATHON <br />
20TH FEB 2020 </b
><br />
</h2>
<a href="#registration">
<button class="hero-register-button" type="button" name="button">
<span class="blink_me">REGISTER NOW</span>
</button>
</a>
</div>
<div class="col col-xl-2 hide_below_960"></div>
<div class="col col-xl-4 hero-right-div">
<br />
if(problem)<br />{<br />
 codeTosolve( );<br />}
</div>
</div>
<br />
<div class="row">
<div class="col"></div>
</div>
</div>
<!-- <h1 id="headline"></h1> -->
<div id="countdown">
<ul>
<li style="color: #ebff00" class="countdown-item">
<span class="countdown-span" id="days"></span>days
</li>
<li style="color: #ff00b8" class="countdown-item">
<span class="countdown-span" id="hours"></span>Hours
</li>
<li style="color: #00e0ff" class="countdown-item">
<span class="countdown-span" id="minutes"></span>Min(s)
</li>
<li style="color: #70ff00" class="countdown-item">
<span class="countdown-span" id="seconds"></span>Sec(s)
</li>
</ul>
</div>
</div>
<!-- About HACKUSICT-->
<section class="AboutUs" id="aboutus">
<div class="text-center">
<h2 class="section-heading aboutUsHead">
const tell = <br class="show_below_786" />
about.Trellathon();
</h2>
</div>
<div class="container1">
<div class="box" style="background: silver">
<!-- <img style="min-width:100%; min-height:100%; display: block: position:absolute;" src="./assets/images/aboutUsImg.jpeg" alt=""> -->
</div>
<div class="box stack-top" style="background: black">
<div class="aboutHackUsict">
<h2 class="text-center text-uppercase">Trellathon</h2>
<p>
Trellathon is the largest, one of its kind, hackathon for GGSIPU
students. While most of the hackathons focus on code, we at
Trellathon consider the uniqueness and potential of the idea as
well. Trellathon provides a platform for all the innovators out
there to come out and test their creation on the market
parameters. We aim to separate “a good idea” from a “market
product” and fill the gap in that journey.
</p>
</div>
</div>
</div>
</section>
<!-- Isse uncomment krliyo @Harsh Goyal <div class="backgroundcanvas" id="your-element-selector"> -->
<!-- HackUSICT-->
<!-- Timeline-->
<section id="timeline" class="page-section" id="about">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase" style="color: white;">Timeline</h2>
<h3 class="section-subheading text-muted">TRELLATHON</h3>
</div>
<ul class="timeline">
<li>
<div class="timeline-image">
<img
class="rounded-circle img-fluid"
src="./assets/images/timeline/register.png"
alt=""
/>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>9th - 19th March 2021</h4>
<h4 class="subheading">REGISTRATION</h4>
</div>
<div class="timeline-body">
<p class="text-muted visibleForUnder375">
Register at
<a href="https://usict.acm.org/hackathon.html">
<span>
https://usict.acm.org/<br />
hackathon.html
</span>
</a>
</p>
<p class="text-muted visibleForRestAndNotUnder375">
Register at
<a href="">https://usict.acm.org/hackathon.html</a>
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img
class="rounded-circle img-fluid"
src="./assets/images/timeline/ideation.png"
alt=""
/>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>16th - 19th March 2021</h4>
<h4 class="subheading">IDEATION ROUND</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
Draft your solution for the problem statement of Trell.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img
class="rounded-circle img-fluid"
src="./assets/images/timeline/resultdec.png"
alt=""
/>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>21st March 2021</h4>
<h4 class="subheading">RESULTS OF IDEATION ROUND</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
shortlisted teams will move forward to the next round.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img
class="rounded-circle img-fluid"
src="./assets/images/timeline/prototype.png"
alt=""
/>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>21st - 24th March 2021</h4>
<h4 class="subheading">PROTOTYPING ROUND</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
Develop a prototype for the solution of the ideation round.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img
class="rounded-circle img-fluid"
src="./assets/images/timeline/dday.png"
alt=""
/>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>24th March 2021</h4>
<h4 class="subheading">D-DAY</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
Pitch your prototype to Trell and Judges.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<h4>24th March<br />Result<br />Declaration</h4>
</div>
</li>
<li>
<div class="timeline-image">
<img
class="rounded-circle img-fluid"
src=""
alt=""
/>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>1st Week of April 2021</h4>
<h4 class="subheading">Evaluation of internship.</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
</p>
</div>
</div>
</li>
</ul>
</div>
</section>
<!-- Timeline ends here-->
<!-- theme hackathon page -->
<div class="themeHackhathon" id="themesHack">
<div id="themeHackhathonHeaderDiv">
<h1 id="themeHackhathonHeader">get(ProblemStatement);</h1>
</div>
<div class="container containerThemeJumboStyle" style="width: 80%">
<div class="jumbotron jumboStyle">
<div class="container-flex">
<div class="row">
<div class="col-lg-1 verticalLineTheme"></div>
<h1 class="col-lg-11 waitTextTheme">
<span class="blink_me"
>Themes will be available on 27th of February,2021.
</span>
</h1>
<button onclick="topFunction()" id="myBtnInsideTheme">
<p class="registerInsideTheme blink_me">Kindly Register</p>
</button>
</div>
</div>
</div>
</div>
<!-- <div class="container">
<div class="row d-flex" id="themeBoxRow">
<div class="col-md-6 col-lg-6 col-sm-12 themeBox">
<div class="modal-box">
<div data-toggle="modal" data-target="#myModal1">
<div class="themeBoxContent">
<img class="themeBoxContentImage" src="./assets/images/Events/acm-orientation.jpg" />
<h1 class="themeBoxContentHeader">EdTech</h1>
<p class="themeBoxContentDescription">
Partnered by: Docker Delhi, Lenskar Partnered by: Docker Delhi,
LenskarPartnered by: Docker Delhi, Lenskar
</p>
</div>
</div>
<div class="modal fade" id="myModal1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<div class="modal-body">
<div class="icon"></div>
<h3 class="title">EdTech</h3>
<p class="description">You are supposed to make a mobile app/web app/hybrid app that eases the
coding experience for high school students. You need to make this hack keeping in
mind that it is specifically meant for school going kids.
For example, you may use AR/VR/MR to explain the compilation process happening
under the hood or apply some AI/ML/DL to personalize the experience, determining
areas that need improvement etc.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 col-sm-12 themeBox">
<div class="modal-box">
<div data-toggle="modal" data-target="#myModal2">
<div class="themeBoxContent">
<img class="themeBoxContentImage" src="./assets/images/Events/acm-orientation.jpg" />
<h1 class="themeBoxContentHeader">EdTech</h1>
<p class="themeBoxContentDescription">
Partnered by: Docker Delhi, Lenskar Partnered by: Docker Delhi,
LenskarPartnered by: Docker Delhi, Lenskar
</p>
</div>
</div>
<div class="modal fade" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<div class="modal-body">
<div class="icon"></div>
<h3 class="title">EdTech</h3>
<p class="description">You are supposed to make a mobile app/web app/hybrid app that eases the
coding experience for high school students. You need to make this hack keeping in
mind that it is specifically meant for school going kids.
For example, you may use AR/VR/MR to explain the compilation process happening
under the hood or apply some AI/ML/DL to personalize the experience, determining
areas that need improvement etc.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
</div>
<!-- prizes hackathon -->
<div id="otherPerksHeaderDiv">
<h1 id="otherPerksHeader">@import(AllPrizes);</h1>
</div>
<div class="container-fluid" id="onlyForLaptop" >
<div class="row" id="perksContent">
<!-- <div class="prizeSecond col-lg-5 col-sm-12">
<img
src="./assets/images/perks/prize.png"
alt="prize"
class="priceImage"
/>
</div> -->
<!-- <div class="col-lg-7"> -->
<!-- <div class="row" style="margin-top: 20px"> -->
<div class="alert alert-info new2 col-md-3 prizesDiv">
<span class="alert-body">
<div style="align-items:center" class="container">
<div class="row">
<div class="col-md-4 cert">
<img src="./assets/images/money_30k.png" alt="trophy" class="trophyPrizes"/>
</div>
<div class="col-md-8">
<p class="mb-0 otherPerksContentDescription" style="color: white;font-size: 1.5rem;">Prizes worth 30K</p>
</div>
</div>
</div>
</span>
</div>
<!-- <div class="col-md-6 perksBox">
<div class="themeBoxContent otherPerksContent">
<img
style="background-color: white"
class="otherPerksContentImage"
src="./assets/images/money_30k.png"
/>
<p class="otherPerksContentDescription">Prizes worth 30K</p>
</div>
</div> -->
<!-- <div class="col-md-6 perksBox">
<div class="themeBoxContent otherPerksContent">
<img
class="otherPerksContentImage"
src="./assets/images/handshake.jpg"
/>
<p class="otherPerksContentDescription">
Internship and PPO offer with trell
</p>
</div>
</div>
</div> -->
<div class="alert alert-info new2 col-md-3 prizesDiv" >
<span class="alert-body">
<div style="align-items:center" class="container">
<div class="row">
<div class="col-md-4 cert">
<img src="./assets/images/perks/hand.jpg" alt="trophy" class="trophyPrizes" />
</div>
<div class="col-md-8">
<p class="mb-0 otherPerksContentDescription" style="color: white;">Internship and PPO offer with Trell</p>
</div>
</div>
</div>
</span>
</div>
<div class="alert alert-info new2 col-md-3 prizesDiv" >
<span class="alert-body">
<div style="align-items:center" class="container">
<div class="row">
<div class="col-md-4 cert">
<img src="./assets/images/perks/certificate.jpg" alt="trophy" class="trophyPrizes"/>
</div>
<div class="col-md-8">
<p class="mb-0 otherPerksContentDescription" style="color: white;">E-Certificates to top 5 teams</p>
</div>
</div>
</div>
</span>
</div>
<!-- <div class="row">
<div class="col-md-6 perksBox">
<div class="themeBoxContent otherPerksContent">
<img
class="otherPerksContentImage"
src="./assets/images/certificate.png"
/>
<p class="otherPerksContentDescription">
E-Certificates to top 5 teams
</p>
</div>
</div> -->
<div class="alert alert-info new2 col-md-3 prizesDiv">
<span class="alert-body">
<div style="align-items:center" class="container">
<div class="row">
<div class="col-md-4 cert">
<img src="./assets/images/acm1.png" alt="trophy" class="trophyPrizes" />
</div>
<div class="col-md-8">
<p class="mb-0 otherPerksContentDescription" style="color: white;">Free ACM membership worth 1500 to top 3 teams</p>
</div>
</div>
</div>
</span>
</div>
<!-- <div class="col-md-6 perksBox">
<div class="themeBoxContent otherPerksContent perksBox">
<img
class="otherPerksContentImage"
src="./assets/images/acm_chapter.jpg "
/>
<p class="otherPerksContentDescription">
Free ACM membership worth 1500 to top 3 teams
</p>
</div>
</div> -->
<!-- </div> -->
<!-- </div> -->
</div>
</div>
<div id="allExceptLaptop">
<div class="row" id="perksContent">
<div class="alert alert-info new2 col-md-3 prizesDiv">
<span class="alert-body">
<div style="align-items:center" class="container">
<img src="./assets/images/money_30k.png" alt="trophy" class="trophyPrizes"/>
<p class="mb-0 otherPerksContentDescription" style="color: white">Prizes worth 30K</p>
</div>
</span>
</div>
<div class="alert alert-info new2 col-md-3 prizesDiv" >
<span class="alert-body">
<div style="align-items:center" class="container">
<img src="./assets/images/perks/hand.jpg" alt="trophy" class="trophyPrizes" />
<p class="mb-0 otherPerksContentDescription" style="color: white;">Internship and PPO offer with Trell</p>
</div>
</span>
</div>
<div class="alert alert-info new2 col-md-3 prizesDiv" >
<span class="alert-body">
<div style="align-items:center" class="container">
<img src="./assets/images/perks/certificate.jpg" alt="trophy" class="trophyPrizes"/>
<p class="mb-0 otherPerksContentDescription" style="color: white;">E-Certificates to top 5 teams</p>
</div>
</span>
</div>
<div class="alert alert-info new2 col-md-3 prizesDiv">
<span class="alert-body">
<div style="align-items:center;" class="container">
<img src="./assets/images/acm1.png" alt="trophy" class="trophyPrizes" />
<p class="mb-0 otherPerksContentDescription" style="color: white;">Free ACM membership worth 1500 to top 3 teams</p>
</div>
</span>
</div>
</div>
<!-- <div class="prizeSecond col-lg-6 col-sm-12">
<img
src="./assets/images/perks/prize.png"
alt="prize"
class="priceImage"
/>
</div>
<div class="container">
<div class="row d-flex">
<div class="col-md-4 col-lg-3 col-sm-6 col-6 perksBox">
<div class="themeBoxContent otherPerksContent">
<img
class="otherPerksContentImage"
src="./assets/images/money_30k.png"
/>
<p class="otherPerksContentDescription">Prizes worth 30K</p>
</div>
</div>
<div class="col-md-4 col-lg-3 col-sm-6 col-6 perksBox">
<div class="themeBoxContent otherPerksContent">
<img
class="otherPerksContentImage"
src="./assets/images/handshake.jpg"
/>
<p class="otherPerksContentDescription">
Internship and PPO offer with trell
</p>
</div>
</div>
<div class="col-md-4 col-lg-3 col-sm-6 col-6 perksBox">
<div class="themeBoxContent otherPerksContent">
<img
class="otherPerksContentImage"
src="./assets/images/certificate.png"
/>
<p class="otherPerksContentDescription">
E-Certificates to top 5 teams
</p>
</div>
</div>
<div class="col-md-4 col-lg-3 col-sm-6 col-6 perksBox">
<div class="themeBoxContent otherPerksContent">
<img
class="otherPerksContentImage"
src="./assets/images/acm_chapter.jpg"
/>
<p class="otherPerksContentDescription">
Free ACM membership worth 1500 to top 3 teams
</p>
</div>
</div>
</div>
</div> -->
</div>
<!-- ********************************************SPONSORS*********************************** -->
<div class="container sponsorDiv" id="sponsorDivi">
<h1>PARTNERS</h1>
<div class="row">
<div class="col-md-6 col-12 sponsors">
<div class="sponsorData one">
<img src="./assets/images/trell_logo.png" alt="" />
<h4>TRELL</h4>
</div>
</div>
<!-- <div class="col-md-4 col-12 sponsors">
<div class="sponsorData two">
<img src="./assets/images/ipu-logo.png" alt="">
<h4>ENSVEE</h4>
</div>
</div> -->
<div class="col-md-6 col-12 sponsors">
<div class="sponsorData three">