forked from SPEC-projects/spec-nith.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectrothon.html
2645 lines (2101 loc) · 129 KB
/
electrothon.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-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Electrothon, Electrothon 3.0, Electrothon'21, SPEC, Hackathon">
<meta property="og:title" content="Electrothon'21">
<meta property="og:locale" content="en_US">
<meta name="description" content="Electrothon: An initiative by SPEC, NITH">
<meta property="og:description" content="Electrothon: An initiative by SPEC, NITH">
<meta property="og:site_name" content="Electrothon'21">
<title>Electrothon'21</title>
<!-- milestones links end -->
<link rel="stylesheet" type="text/css" href="./Electrothon/css/electrothon_main.css">
<link rel="stylesheet" type="text/css" href="./Electrothon/css/flipdown.css">
<link rel="stylesheet" type="text/css" href="./Electrothon/css/countdown.css">
<link rel="stylesheet" type="text/css" href="./Electrothon/css/diversity.css">
<link rel="stylesheet" type="text/css" href="./Electrothon/css/aboutsection.css">
<link rel="stylesheet" type="text/css" href="./Electrothon/css/devfolio.css">
<link rel="stylesheet" type="text/css" href="./Electrothon/css/animate.css">
<link rel="stylesheet" type="text/css" href="./Electrothon/css/newfaq.css">
<link rel="stylesheet" type="text/css" href="./Electrothon/css/schedule.css">
<link rel="stylesheet" href="./Electrothon/css/testimonial.css">
<link rel="stylesheet" href="./Electrothon/css/bootstrap.min.css">
<link rel="stylesheet" href="./Electrothon/css/all.min.css">
<link rel="shortcut icon" href="./Electrothon/images/electrothon_logo.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!--BAFFLE.JS LINK-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/baffle.min.js"></script>
<!------animate.css & aos----->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<!-------fonts----->
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Manjari&display=swap" rel="stylesheet">
<!------fontawesome---->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="Electrothon/css/styles.css" />
<script src="https://kit.fontawesome.com/b270e9fb43.js" crossorigin="anonymous"></script>
<style>
html {
scroll-behavior: smooth;
}
</style>
</head>
<body onload="preloader()">
<div class="preloaderBg" id="preloader" onload="preloader()">
<div class="preloader"> <img src="./Electrothon/images/electrothon_logo.png" alt="electrothon-logo"></div>
<div class="preloader2"></div>
</div>
<nav id="mainNavbar" class="navbar navbar-expand-lg navbar-light fixed-top">
<a rel="norefferer noopenor" id="brand" class="navbar-brand" href="#">
<img alt="logo_white" src="./Electrothon/images/electrothon_logo.png" width="75" height="70" id="logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"
style="background: #fff;">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto align-items-center">
<li class="nav-item">
<a rel="norefferer noopenor" class="nav-link"
href="https://www.notion.so/Hacker-s-Guide-to-Electrothon-3-0-528b6b2f10bd48dd812ed8dd9f99ce7f"
target="_blank">Hackers Guide</a>
</li>
<li class="nav-item">
<a rel="norefferer noopenor" class="nav-link" href="#schedule">Schedule</a>
</li>
<li class="nav-item">
<a rel="norefferer noopenor" class="nav-link" href="#prize">Prizes</a>
</li>
<li class="nav-item">
<a rel="norefferer noopenor" class="nav-link" href="#work">Events</a>
</li>
<li class="nav-item">
<a rel="norefferer noopenor" class="nav-link" href="#sponsorss">Sponsors</a>
</li>
<li class="nav-item">
<a rel="norefferer noopenor" class="nav-link" href="mailto:[email protected]"
target="_blank">Contact Us</a>
</li>
<li class="nav-item">
<a rel="norefferer noopenor" class="nav-link" href="https://electrothon.nith.ac.in">Electrothon 5.0</a>
</li>
</ul>
</div>
</nav>
<div class="section">
<div class="context" id="context">
<!-- header section starts -->
<div class="hero-video">
<video class="video_back" autoplay loop muted>
<source src="./Electrothon/images/bgvideo.mp4" type="video/mp4">
</video>
</div>
<div class="title">
<span class="electrothontitle">ELECTROTHON 2K21</span><br>
<span id="tagb" class="tagline my-2">|SEARCH|</span>
<br>
<div class="title2 my-4">
<span id="dates">5th Feb - 7th Feb</span>
</div>
</div>
<!-- header section ends -->
<!----------------About start------------------->
<div class="row about" style="padding-top: 20px;" id="about">
<div class="col-12 col-lg-6 columnb">
<div class="row justify-content-center d-flex">
<div class="col-lg-12">
<div id="about_img" class="img-fluid">
<img alt="about" src="./Electrothon/images/about.jpg">
</div>
</div>
</div>
</div>
<div class="col-12 col-lg-6 columna">
<div class="row justify-content-center d-flex">
<div class="col-lg-12">
<div id="about_hack">
<h1 data-aos="zoom-in">ABOUT</h1>
<hr class="abouthr">
<p data-aos="zoom-in">Join hundreds of participants in Electrothon - A plentitude of
opportunities where enthusiastic minds could brainstorm on solutions for challenging
issues through technology. Put your skills to the test, and you could win amazing
prizes and sharpen your competitive edge. So be ready to caffeinate, collaborate and
celebrate.</p>
</div>
<div class="col-lg-12 cont">
<h2 class="fs-2 bg-dark text-align-center pt-2 rounded" style="color:white;">WE ARE
DONE !</h2>
<h2 class="bg-dark text-align-center pt-2 rounded">SEE YOU AGAIN !!!</h2>
</div>
</div>
</div>
</div>
</div>
<!-- milestones part start here -->
<section id="stats-subtitle">
<div class="text-align-center pt-5">
<h1 style="color: #000;" class="text-center fs-1 align-items-center d-block">MILESTONES</h1>
<h2 style="color: #000;" class="text-center fs-2 align-items-center d-block">We achieved this
year</h2>
</div>
<div class="row text-align-center">
<div class="col-xl-6 col-md-12">
<div class="card overflow-hidden">
<div class="card-content">
<div class="card-body cleartfix ">
<div class="media align-items-center">
<div class="align-self-center">
<i style="color: #16D39A;" class="fas fa-users fa-3x mx-2"></i>
</div>
<div class="media-body mx-2">
<h4>Total Participants</h4>
<span></span>
</div>
<div class="align-self-center mx-2">
<h1>1900+</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-md-12">
<div class="card">
<div class="card-content">
<div class="card-body cleartfix">
<div class="media align-items-center">
<div class="align-self-center mx-2">
<i style="color: #00B5B8" class="fas fa-code fa-3x"></i>
</div>
<div class="media-body mx-2">
<h4>Lines of code written</h4>
<span></span>
</div>
<div class="align-self-center mx-1">
<h1 style="margin-left: 10px;">100k+</h1>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-6 col-md-12">
<div class="card">
<div class="card-content">
<div class="card-body cleartfix">
<div class="media align-items-center">
<div class="align-self-center mx-2">
<i style="color: #FF7588;" class="fas fa-donate fa-3x"></i>
</div>
<div class="media-body mx-2">
<h4>Total Sponsors</h4>
<span></span>
</div>
<div class="align-self-center mx-2">
<h1>44+</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-md-12">
<div class="card">
<div class="card-content">
<div class="card-body cleartfix">
<div class="media align-items-center">
<div class="align-self-center mx-2">
<i style="color: #FFA87D;" class="fas fa-award fa-3x"></i>
</div>
<div class="media-body mx-2">
<h4>Prize Categories</h4>
<span></span>
</div>
<div class="align-self-center mx-2">
<h1>22+</h1>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- milestones part ends here -->
<!----------about end------------------->
</div>
<!-- contect id div ends here -->
<!-- <div id="video" class="video-container">
<div class="color-overlay"></div>
<video class="video_back" autoplay loop muted>
<source src="./Electrothon/images/bgvideo.mp4" type="video/mp4">
</video>
</div> -->
</div>
<!-- class section div ends here-->
<!--------------------Diversity section-------------->
<a rel="norefferer noopenor" name="diversity"></a>
<div class="curved">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#0c253b" fill-opacity="1"
d="M0,96L80,133.3C160,171,320,245,480,250.7C640,256,800,192,960,186.7C1120,181,1280,235,1360,261.3L1440,288L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z">
</path>
</svg>
<div id="diverse" class="jumbotron odd">
<div class="row">
<div class="col-lg-6" id="diversity">
<h1 data-aos="zoom-in">DIVERSITY </h1>
<hr class="diversityhr">
<p data-aos="zoom-in">A platform which also provides an opportunity for women to meet their peers,
interact with potential mentors, and to test their abaility to leverage technology to solve
real-world problems. It's time for women participants to showcase their true talents and build
ideas. Electrothon supports the theme - <span class="large">"Think equal, build smart, innovate
for change"</span>, and promotes women developers around the globe. With that spirit, we
invite women innovators, developers, creaters, designers and hackathon enthusiasts to showcase
their projects and take them to the next level.</p>
</div>
<div class="col-lg-6 d-flex justify-content-center female" id="female">
<div>
<div class="about-img ">
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="./Electrothon/images/diversity.jpg"
id="female-img" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./Electrothon/images/diversity2.jpg"
id="female-img" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./Electrothon/images/diversity4.jpg"
id="female-img" alt="Third slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./Electrothon/images/diversity5.jpg"
id="female-img" alt="Third slide">
</div>
</div>
<a rel="norefferer noopenor" class="carousel-control-prev"
href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a rel="norefferer noopenor" class="carousel-control-next"
href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!--<img src="images/diversity.jpg" id="female-img">-->
</div>
</div>
</div>
</div>
</div>
<!--svg lower part-->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#0c253b" fill-opacity="1"
d="M0,160L48,165.3C96,171,192,181,288,170.7C384,160,480,128,576,138.7C672,149,768,203,864,208C960,213,1056,171,1152,144C1248,117,1344,107,1392,101.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z">
</path>
</svg>
</div>
<!--------------------------------Diversity Section end--------------->
<!-------------------Categories Section Stars----------->
<div id="categories">
<div class="row justify-content-center d-flex">
<div class="col-lg-12 justify-content-center d-flex ">
<div class="categories" data-aos="zoom-in">
PROJECT CATEGORIES
<hr class="categorieshr">
</div>
</div>
<div class="row justify-content-center d-flex">
<div class="col-lg-4 col-md-6 col-sm-12 justify-content-center d-flex">
<section class="container">
<div class="work-sample-card">
<div class="imgBx" style="background-image: url(./Electrothon/images/t1.webp)"></div>
<div class="content">
<!-- <h2 class="title">Description</h2> -->
<p class="description">Wisdom in post industrial world is knowing when to advance
forward and when to step back to consider the consequences of our decisions. While
being cocooned by technology, we have dismissed the thoughts about things that
nature, and not technology can provide. So get creative and lead your team on the
quest to find the right balance.</p>
</div>
<div class="titr">
<h1>I</h1>
</div>
</div>
</section>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 justify-content-center d-flex">
<section class="container">
<div class="work-sample-card">
<div class="imgBx" style="background-image: url(./Electrothon/images/t2.webp)"></div>
<div class="content">
<!-- <h2 class="title">Description</h2> -->
<p class="description">We all know at least one person who dreams of launching their own
brand, or maybe you yourselves plan to do so. Browse this category for some of the
problems faced by the organizations and individuals in the business, furthermore
take upon the challenge to find creative solutions for these issues.</p>
<a rel="norefferer noopenor" href="#pstitle"><button>Problem statements</button></a>
</div>
<div class="titr">
<h1>II</h1>
</div>
</div>
</section>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 justify-content-center d-flex">
<section class="container">
<div class="work-sample-card">
<div class="imgBx" style="background-image: url(./Electrothon/images/t3.webp)"></div>
<div class="content">
<!-- <h2 class="title">Description</h2> -->
<p class="description">Change is inevitable and let's accept that there is no going back
to the routines we had before Corona hit us. But what we can do now is find ways to
upgrade our lives and of those around us in the 'New Normal'. Well if your mind is
changing gears while reading this then Congratulations! We proudly provide you a
platform to shape your ideas.</p>
</div>
<div class="titr">
<h1>III</h1>
</div>
</div>
</section>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 justify-content-center d-flex">
<section class="container">
<div class="work-sample-card">
<div class="imgBx" style="background-image: url(./Electrothon/images/t4.webp)"></div>
<div class="content">
<!-- <h2 class="title">Description</h2> -->
<p class="description">Technology has been tearing us apart in the epoch of time we are
currently in, but there is one thing with the ability to bind us all together -
Culture. What we need is the right balance between the two for the smooth
functioning of this complex social institute called life. We invite you to work upon
creating nuanced technology while respecting our culture.</p>
</div>
<div class="titr">
<h1>IV</h1>
</div>
</div>
</section>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 justify-content-center d-flex">
<section class="container">
<div class="work-sample-card">
<div class="imgBx" style="background-image: url(./Electrothon/images/t5.webp);"></div>
<div class="content">
<!-- <h2 class="title">Description</h2> -->
<p class="description">Once new products have been developed secretly and behind closed
doors, today a targeted integration of customers, researchers, suppliers and
partners into the innovation activities takes place. If none of the above mentioned
categories excites you, you are free to come up with an innovation of your own.</p>
</div>
<div class="titr">
<h1>V</h1>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<!---------------Gategories section end------>
<!--------Problem statements section start------------->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#0c253b" fill-opacity="1"
d="M0,128L48,144C96,160,192,192,288,197.3C384,203,480,181,576,181.3C672,181,768,203,864,224C960,245,1056,267,1152,245.3C1248,224,1344,160,1392,128L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z">
</path>
</svg>
<section id="team" class="pb-5">
<h5 class="section-title h1" id="pstitle" data-aos="zoom-in">Organizational Problem Statements</h5>
<hr class="techhr">
<div class="row d-flex justify-content-center below">
<div class="col-xs-12 col-lg-12 col-md-12 d-flex justify-content-center flip " data-aos="zoom-in">
<div class="image-flip ">
<div class="mainflip flip-0">
<div class="frontside">
<div class="card2 maincard" style="width: 26rem;">
<div class="card-body2 text-center">
<p class="i_h"><img class=" img-fluid" src="./Electrothon/images/sponsors/Spyne.png"
alt="card image"></p>
<h4 class="card-title2">Spyne.ai</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card2 maincard">
<div class="card-body2 text-center mt-0">
<h4 class="card-title2">Computer Vision Hackathon</h4>
<p class="card-text2">Problem A- Bedsheet Overlapping <br>
Problem B- Changing Dress Color<br>
Problem C- Human Removal Foreground</p>
<h4 class="card-title2">Prizes</h4>
<p class="card-text2"> Top 3 Teams will be interviewed for full-time roles and
internships.<br>
Winner will get cash prize of Rs 15,000.
Cash prizes worth upto Rs 10,000 to the novel approaches and their solutions
accuracy.</p>
<a rel="norefferer noopenor"
href="https://www.notion.so/Organizational-Problem-Statements-ac0bd0cea6a44920ab845dc8f72379b1#12283d0b98b14a52b5fd691a5a7cde78"
target="_blank"><button class="pbs">Know More</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-lg-6 col-md-6 d-flex justify-content-center flip" data-aos="zoom-in">
<div class="image-flip">
<div class="mainflip flip-0">
<div class="frontside">
<div class="card2">
<div class="card-body2 text-center">
<p><img class=" img-fluid" src="./Electrothon/images/sponsors/aiborne.png"
alt="card image"></p>
<h4 class="card-title2">Ai Borne</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card2">
<div class="card-body2 text-center mt-0">
<h4 class="card-title2">Workshop XR </h4>
<p class="card-text2">Using Augmented Reality to Digitally Simulate complex machines
and relevant processes involved in college laboratories and workshops.</p>
<h4 class="card-title2">Prizes</h4>
<p class="card-text2">Rs. 4000 to the winning team.<br>
Paid internship to the team based on interviews.</p>
<a rel="norefferer noopenor"
href="https://www.notion.so/Organizational-Problem-Statements-ac0bd0cea6a44920ab845dc8f72379b1"
target="_blank"><button class="pbs">Know More</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-lg-6 col-md-6 d-flex justify-content-center flip" data-aos="zoom-in">
<div class="image-flip">
<div class="mainflip flip-0">
<div class="frontside">
<div class="card2">
<div class="card-body2 text-center">
<p class="i_h"><img class=" img-fluid"
src="./Electrothon/images/sponsors/SuitableTransparent.b919024f.png"
alt="card image"></p>
<h4 class="card-title2">Suitable AI</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card2">
<div class="card-body2 text-center mt-0">
<h4 class="card-title2">Employee Referral Platform</h4>
<p class="card-text2">Build a platform to analyze and gather information about your
connections from different popular professional portals.</p>
<h4 class="card-title2">Prizes</h4>
<p class="card-text2"> A cash prize of Rs. 2000 to the winning team along with the
internship opportunity.</p>
<a rel="norefferer noopenor"
href="https://www.notion.so/Organizational-Problem-Statements-ac0bd0cea6a44920ab845dc8f72379b1#82bd0cf3b5b84023b458315d991faeed"
target="_blank"><button class="pbs">Know More</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-lg-6 col-md-6 d-flex justify-content-center flip" data-aos="zoom-in">
<div class="image-flip">
<div class="mainflip flip-0">
<div class="frontside">
<div class="card2">
<div class="card-body2 text-center">
<p><img class=" img-fluid"
src="./Electrothon/images/sponsors/IEEE_logo-removebg-preview.png"
alt="card image"></p>
<h4 class="card-title2">IEEE Mandi</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card2">
<div class="card-body2 text-center mt-0">
<h4 class="card-title2">Go Online</h4>
<p class="card-text2">Build a framework to analyze the skin pigmentation of a
patient and generate a detailed medical report for the same. Use machine
learning to study the skin color of the patient. </p>
<h4 class="card-title2">Prizes</h4>
<p class="card-text2">A cash prize of Rs. 2500 to the winning team.</p>
<a rel="norefferer noopenor"
href="https://www.notion.so/Organizational-Problem-Statements-ac0bd0cea6a44920ab845dc8f72379b1#ec0c8cacba5846faa9323feecdcd9959"
target="_blank"><button class="pbs">Know More</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-lg-6 col-md-6 d-flex justify-content-center" data-aos="zoom-in">
<div class="image-flip">
<div class="mainflip flip-0">
<div class="frontside">
<div class="card2">
<div class="card-body2 text-center">
<p class="iotiot"><img class=" img-fluid"
src="./Electrothon/images/sponsors/IoTIOT.IN-Logo.png" alt="card image"></p>
<h4 class="card-title2">IotIot</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card2">
<div class="card-body2 text-center mt-0">
<h4 class="card-title2">Frontend with Flutter</h4>
<p class="card-text2">We have a zapier clone ready. We want to change the frontend
for our current software using flutter.</p>
<h4 class="card-title2">What do you get?</h4>
<p class="card-text2">Mentor Support throughout to help plan and solve <br> Free
Training on tools(DevOps, Git, Project Management) <br> A cash prize of
<strong>Rs. 2000</strong> to the winning team.
</p>
<a rel="norefferer noopenor"
href="https://www.notion.so/Organizational-Problem-Statements-ac0bd0cea6a44920ab845dc8f72379b1#982ce3fee252442b9059c375c2cabe02"
target="_blank"><button class="pbs">Know More</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 320">
<path fill="#0c253b" fill-opacity="1"
d="M0,160L48,165.3C96,171,192,181,288,170.7C384,160,480,128,576,138.7C672,149,768,203,864,208C960,213,1056,171,1152,144C1248,117,1344,107,1392,101.3L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z">
</path>
</svg>
<!--------------------problem statements section end--------------->
<!-- ---------------challenges section begins here-------------- -->
<section id="challenges">
<div class="row justify-content-center d-flex">
<div class="col-lg-12 justify-content-center d-flex">
<div class="sponsor_title">CHALLENGES<br>
<hr class="sponsorhr">
</div>
</div>
</div>
<section class="challenges justify-content-center d-flex">
<div class="row justify-content-center d-flex">
<div class="col-lg-4 col-md-6 col-sm-12 justify-content-center d-flex">
<aside class="profile-card"
style=" border:5px solid orange; border-top: 0px solid #000; border-bottom: 0px solid #00695C;">
<header>
<img src="./Electrothon/images/sponsors/cipherschools.jpeg">
<h1>Challenge</h1>
</header>
<section class="onhovr">
<p>The project must be involving <strong>Web Devlopment</strong>.</p>
<h1>Prizes</h1>
<p>1. 100% discount to the winners under the WebApp development category</p>
<a
href="https://www.notion.so/Submission-bbe98ba09f3c4556b6f233530fbb07d8#c676340393cc42078ae9b17305651a01"><button
class="chal" target="_blank">Know More</button></a>
</section>
</aside>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 justify-content-center d-flex">
<aside class="profile-card"
style=" border:5px solid blue; border-top: 0px solid #000; border-bottom: 0px solid #00695C;">
<header>
<img src="./Electrothon/images/sponsors/tezos_2.png">
<h1>Challenge</h1>
</header>
<section class="onhovr">
<p>The project must be Dapp built on <strong>Tezos</strong>.</p>
<h1>Prizes</h1>
<p>1. ₹10,000 for best Dapp built on Tezos<br>
2. ₹5000 for Runners-up Dapp built on Tezos
</p>
<a rel="norefferer noopenor"
href="https://www.notion.so/Submission-bbe98ba09f3c4556b6f233530fbb07d8#c676340393cc42078ae9b17305651a01"
target="_blank"><button class="chal">Know More</button></a>
</section>
</aside>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 justify-content-center d-flex">
<aside class="profile-card"
style=" border:5px solid #EAEBEC; border-top: 0px solid #000; border-bottom: 0px solid #00695C;">
<header>
<img src="./Electrothon/images/sponsors/portis_3.png">
<h1>Challenge</h1>
</header>
<section class="onhovr">
<p>The project must be Dapp built on <strong>Portis</strong>.</p>
<h1>Prizes</h1>
<p>1. ₹15,000 (in crypto) for best Dapp built on Portis.
</p>
<a rel="norefferer noopenor"
href="https://www.notion.so/Submission-bbe98ba09f3c4556b6f233530fbb07d8#c676340393cc42078ae9b17305651a01"
target="_blank"><button class="chal">Know More</button></a>
</section>
</aside>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 justify-content-center d-flex">
<aside class="profile-card"
style=" border:5px solid #0296F3; border-top: 0px solid #000; border-bottom: 0px solid #00695C;">
<header>
<img src="./Electrothon/images/sponsors/matic_3.png">
<h1>Challenge</h1>
</header>
<section class="onhovr">
<p>The project must be built on <strong>Ethereum or Ethereum and Matic</strong>.</p>
<h1>Prizes</h1>
<p>1. ₹10,000 for the best hack built on Ethereum <br>
2. ₹15,000 for the best hack built on Ethereum + Matic<br>
3. Eligibility to apply for internship/full-time roles and seed funding of up to 5,000
USD for winners!
</p>
<a rel="norefferer noopenor"
href="https://www.notion.so/Submission-bbe98ba09f3c4556b6f233530fbb07d8#c676340393cc42078ae9b17305651a01"
target="_blank"><button class="chal">Know More</button></a>
</section>
</aside>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 justify-content-center d-flex">
<aside class="profile-card"
style=" border:5px solid #4899EB; border-top: 0px solid #000; border-bottom: 0px solid #00695C;">
<header>
<img src="./Electrothon/images/sponsors/echoAR.png">
<h1>Challenge</h1>
</header>
<section class="onhovr">
<p>Winners MUST use the <strong>echoAR</strong> platform as part of their project to be
eligible for a reward.</p>
<h1>Prizes</h1>
<p>1. $50 Amazon gift card(per team) <br>
2. 1-month free Business Tier access(per team member)<br>
3. Selected projects will be featured on our “Inspiration” Page
</p>
<a rel="norefferer noopenor"
href="https://www.notion.so/Submission-bbe98ba09f3c4556b6f233530fbb07d8#c676340393cc42078ae9b17305651a01"
target="_blank"><button class="chal">Know More</button></a>
</section>
</aside>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 justify-content-center d-flex">
<aside class="profile-card"
style=" border:5px solid #488AEB; border-top: 0px solid #000; border-bottom: 0px solid #00695C;">
<header>
<img src="./Electrothon/images/sponsors/sashi-do.png">
<h1>Challenge</h1>
</header>
<section class="onhovr">
<p>Short overview of the project must be posted on <a
href="https://dev.to/">https://dev.to/</a> and then submit the link to us at <a
href="[email protected]">[email protected]</a> for review.</p>
<h1>Prizes</h1>
<p>1. Short blog post for the top projects and special prizes. <br>
2. Top projects promotion on thier social media channels.<br>
3. Internship Opportunity
</p>
<a rel="norefferer noopenor"
href="https://www.notion.so/Submission-bbe98ba09f3c4556b6f233530fbb07d8#c676340393cc42078ae9b17305651a01"
target="_blank"><button class="chal">Know More</button></a>
</section>
</aside>
</div>
</div>
</section>
</section>
<!-- ---------------challenges section end here-------------- -->
<!-- --------------timeline starts here ------>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path fill="#0c253b" fill-opacity="1"
d="M0,128L48,144C96,160,192,192,288,197.3C384,203,480,181,576,181.3C672,181,768,203,864,224C960,245,1056,267,1152,245.3C1248,224,1344,160,1392,128L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z">
</path>
</svg>
<!-- Schedule Begins here -->
<section id="schedule">
<div class="schedule">
<div class="work_title">SCHEDULE</div>
<hr id="work_hor">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="main-timeline">
<div class="timeline">
<div class="timeline-icon"><span class="year">Jan, 31</span></div>
<div class="timeline-content">
<h3 class="title_dule">AFH Diversity Roundtable Event</h3>
<p class="description">
Here is an opportunity for you all with an equal right to participate in a round
table discussion to hold a close discussion and explore Sustainable Business-
Need of the hour, with our esteemed guest speaker Dr. Nayan Mitra
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><span class="year">Feb, 2</span></div>
<div class="timeline-content">
<h3 class="title_dule">Mr. Shiva Venkatraman Talk</h3>
<p class="description">
Founder & CEO of Varidus, a Cloud & Digital Transformation Expert will deliver
the talk on Cloud Computing. He is an entrepreneurial business growth leader
experience in providing strategic direction in incubating and scaling cloud
businesses.
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><span class="year">Feb, 3</span></div>
<div class="timeline-content">
<h3 class="title_dule">Niharika Arora (Live on Insta)</h3>
<p class="description">
Miss Niharika Arora is an active technical blogger, a google developer expert,
an open source contributor and public speaker. She is a woman with dynamic
personality and an inspiration to the youth.
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><span class="year">Feb, 4</span></div>
<div class="timeline-content">
<h3 class="title_dule">Coding Blocks Workshop</h3>
<p class="description">
A "MACHINE LEARNING" workshop to make students proficient in ideas that how
systems can learn from data, identify patterns and make decisions with minimum
human intervention.
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><span class="year">Feb, 5</span></div>
<div class="timeline-content">
<h3 class="title_dule">Electrothon 3.0</h3>
<p class="description">
07:00 PM - Inauguration<br>
07:30 PM - Judges Introduction<br>
07:30 PM - Organisations Introduction<br>
07:30 PM - Mini Events Prizes Distribution<br>
08:00 PM - Live Q & A<br>
08:00 PM - Moving to Discord<br>
08:00 PM - Hacking Begins<br>
09:00 PM - EchoAR Workshop<br>
11:00 PM - GeeksForGeeks Coding Event
</p>
</div>
</div>