-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1652 lines (1579 loc) · 103 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" class="no-js">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Pravidhi - Amrita Bangalore</title>
<script>
document.documentElement.classList.remove('no-js');
document.documentElement.classList.add('js');
</script>
<!-- CSS
================================================== -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="css/vendor.css" />
<link rel="stylesheet" href="css/styles.css" />
<!-- favicons
================================================== -->
<link rel="apple-touch-icon" sizes="180x180" href="./images/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon-16x16.png" />
<link rel="manifest" href="./site.webmanifest" />
</head>
<body id="top">
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader"></div>
</div>
<!-- page wrap
================================================== -->
<div id="page" class="s-pagewrap">
<div id="particles-js"></div>
<!-- # site header
================================================== -->
<header class="s-header">
<div class="s-header__logo">
<a class="logo" href="index.html">
<img src="images/logo.png" alt="Homepage" />
</a>
</div>
<div class="s-header__logo amrita-logo">
<a class="logo" href="index.html">
<img src="images/amrita-logo.png" alt="Amrita Logo" />
</a>
</div>
</header>
<!-- end s-header -->
<!-- # site-content
================================================== -->
<section id="content" class="s-content">
<!-- intro
----------------------------------------------- -->
<section id="intro" class="s-intro target-section">
<div class="s-intro__bg rellax" data-rellax-speed="-5"></div>
<div class="row s-intro__content">
<div class="column lg-12 s-intro__content-inner">
<h3 class="s-intro__pretitle">Unleash the future</h3>
<h1 class="s-intro__title">Pravidhi '22</h1>
</div>
<!-- s-intro__content-inner -->
</div>
<!-- s-intro__content -->
<ul class="s-intro__social" style="margin-bottom: 30px">
<li>
<a href="https://www.instagram.com/pravidhi_aseb/">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
style="fill: rgba(0, 0, 0, 1)"
>
<path
d="M11.999,7.377c-2.554,0-4.623,2.07-4.623,4.623c0,2.554,2.069,4.624,4.623,4.624c2.552,0,4.623-2.07,4.623-4.624 C16.622,9.447,14.551,7.377,11.999,7.377L11.999,7.377z M11.999,15.004c-1.659,0-3.004-1.345-3.004-3.003 c0-1.659,1.345-3.003,3.004-3.003s3.002,1.344,3.002,3.003C15.001,13.659,13.658,15.004,11.999,15.004L11.999,15.004z"
></path>
<circle cx="16.806" cy="7.207" r="1.078"></circle>
<path
d="M20.533,6.111c-0.469-1.209-1.424-2.165-2.633-2.632c-0.699-0.263-1.438-0.404-2.186-0.42 c-0.963-0.042-1.268-0.054-3.71-0.054s-2.755,0-3.71,0.054C7.548,3.074,6.809,3.215,6.11,3.479C4.9,3.946,3.945,4.902,3.477,6.111 c-0.263,0.7-0.404,1.438-0.419,2.186c-0.043,0.962-0.056,1.267-0.056,3.71c0,2.442,0,2.753,0.056,3.71 c0.015,0.748,0.156,1.486,0.419,2.187c0.469,1.208,1.424,2.164,2.634,2.632c0.696,0.272,1.435,0.426,2.185,0.45 c0.963,0.042,1.268,0.055,3.71,0.055s2.755,0,3.71-0.055c0.747-0.015,1.486-0.157,2.186-0.419c1.209-0.469,2.164-1.424,2.633-2.633 c0.263-0.7,0.404-1.438,0.419-2.186c0.043-0.962,0.056-1.267,0.056-3.71s0-2.753-0.056-3.71C20.941,7.57,20.801,6.819,20.533,6.111z M19.315,15.643c-0.007,0.576-0.111,1.147-0.311,1.688c-0.305,0.787-0.926,1.409-1.712,1.711c-0.535,0.199-1.099,0.303-1.67,0.311 c-0.95,0.044-1.218,0.055-3.654,0.055c-2.438,0-2.687,0-3.655-0.055c-0.569-0.007-1.135-0.112-1.669-0.311 c-0.789-0.301-1.414-0.923-1.719-1.711c-0.196-0.534-0.302-1.099-0.311-1.669c-0.043-0.95-0.053-1.218-0.053-3.654 c0-2.437,0-2.686,0.053-3.655c0.007-0.576,0.111-1.146,0.311-1.687c0.305-0.789,0.93-1.41,1.719-1.712 c0.534-0.198,1.1-0.303,1.669-0.311c0.951-0.043,1.218-0.055,3.655-0.055c2.437,0,2.687,0,3.654,0.055 c0.571,0.007,1.135,0.112,1.67,0.311c0.786,0.303,1.407,0.925,1.712,1.712c0.196,0.534,0.302,1.099,0.311,1.669 c0.043,0.951,0.054,1.218,0.054,3.655c0,2.436,0,2.698-0.043,3.654H19.315z"
></path>
</svg>
<span class="u-screen-reader-text">Instagram</span>
</a>
</li>
</ul>
<!-- s-intro__social -->
<div class="s-intro__scroll">
<a href="#about" class="smoothscroll">
<span>Scroll Down</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
style="fill: rgba(0, 0, 0, 1); transform: rotate(180deg)"
>
<path
d="M21 11H6.414l5.293-5.293-1.414-1.414L2.586 12l7.707 7.707 1.414-1.414L6.414 13H21z"
></path>
</svg>
</a>
</div>
<!-- s-intro__scroll -->
</section>
<!-- end s-intro -->
<!-- about
----------------------------------------------- -->
<section id="about" class="s-about target-section">
<div class="row s-about__content" data-animate-block>
<div class="column lg-12">
<h2 class="text-pretitle" data-animate-el>About Us</h2>
<p class="s-about__desc" data-animate-el>
<span style="color: #06ff00">Pravidhi</span>, Amrita School of Engineering
Bengaluru's technical fest, is the perfect blend of all Engineering sciences,
bringing out the best aspect of each and aiming to give students of the
Bengaluru campus, creating a fusion of engaging competitions and activities.
</p>
</div>
<!-- end column -->
</div>
<!-- end s-about__content -->
</section>
<!-- end about -->
<!-- services
----------------------------------------------- -->
<section id="services" class="s-services">
<div class="s-services__bg"></div>
<div class="s-services__content">
<h3 class="text-pretitle" style="color: rgba(255, 255, 255, 0.7); text-align: center">
Overview
</h3>
<div class="row services-list block-lg-one-half block-tab-whole" data-animate-block>
<div class="column service-item" data-animate-el>
<span class="service-icon-block">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
>
<path
d="M22 4c-1.5 0-2.662 1.685-1.598 3.194.535.759.406 1.216.045 1.749-.765 1.127-1.872 2.057-3.447 2.057-2.521 0-3.854-2.083-4.131-3.848-.096-.614-.15-1.074.436-1.644.402-.39.695-.904.695-1.508 0-1.104-.896-2-2-2s-2 .896-2 2c0 .604.293 1.118.695 1.508.586.57.531 1.03.436 1.644-.277 1.765-1.61 3.848-4.131 3.848-1.575 0-2.682-.93-3.447-2.058-.362-.532-.491-.989.045-1.748 1.064-1.509-.098-3.194-1.598-3.194-1.104 0-2 .896-2 2 0 .797.464 1.495 1.144 1.808.825.38.856 1.317.856 2.171v12.021h20v-12.021c0-.854.031-1.792.856-2.171.68-.313 1.144-1.011 1.144-1.808 0-1.104-.896-2-2-2zm-10 6.297c1.977 2.96 5.58 3.354 8 1.851v3.852h-16v-3.852c2.398 1.49 6.01 1.131 8-1.851zm-8 9.703v-2h16v2h-16z"
/>
</svg>
</span>
<div class="service-content">
<h3 class="h4">Coding Competitions</h3>
<p>
Grab a coffee and come prove your programming and problem solving
skills in our tricky head-scratching events
</p>
</div>
</div>
<!-- end service-item -->
<div class="column service-item" data-animate-el>
<span class="service-icon-block">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
>
<path
d="M17 8c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm0-2c-1.657 0-3 1.343-3 3s1.343 3 3 3 3-1.343 3-3-1.343-3-3-3zm-10 6c-1.657 0-3 1.343-3 3s1.343 3 3 3 3-1.343 3-3-1.343-3-3-3zm10-8c.343 0 .677.035 1 .101v-2.101c0-.552-.447-1-1-1s-1 .448-1 1v2.101c.323-.066.657-.101 1-.101zm-10 6c.343 0 .677.035 1 .101v-8.101c0-.552-.447-1-1-1s-1 .448-1 1v8.101c.323-.066.657-.101 1-.101zm10 4c-.343 0-.677-.035-1-.101v8.101c0 .552.447 1 1 1s1-.448 1-1v-8.101c-.323.066-.657.101-1 .101zm-10 6c-.343 0-.677-.035-1-.101v2.101c0 .552.447 1 1 1s1-.448 1-1v-2.101c-.323.066-.657.101-1 .101z"
/>
</svg>
</span>
<div class="service-content">
<h3 class="h4">Electronics</h3>
<p>
Get hands on experience with circuits and robotics as you brainstorm
and build working projects with your friends
</p>
</div>
</div>
<!-- end service-item -->
<div class="column service-item" data-animate-el>
<span class="service-icon-block">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
fill-rule="evenodd"
clip-rule="evenodd"
>
<path
d="M10 16v2.5c0 2.483-2.017 4.5-4.5 4.5-2.484 0-4.5-2.017-4.5-4.5 0-2.484 2.016-4.5 4.5-4.5h2.5v-4h-2.5c-2.484 0-4.5-2.016-4.5-4.5 0-2.483 2.016-4.5 4.5-4.5 2.483 0 4.5 2.017 4.5 4.5v2.5h4v-2.5c0-2.483 2.017-4.5 4.5-4.5 2.484 0 4.5 2.017 4.5 4.5 0 2.484-2.016 4.5-4.5 4.5h-2.5v4h2.5c2.484 0 4.5 2.016 4.5 4.5 0 2.483-2.016 4.5-4.5 4.5-2.483 0-4.5-2.017-4.5-4.5v-2.5h-4zm-2 0h-2.5c-1.379 0-2.5 1.122-2.5 2.5s1.121 2.5 2.5 2.5 2.5-1.122 2.5-2.5v-2.5zm10.5 0h-2.5v2.5c0 1.378 1.121 2.5 2.5 2.5s2.5-1.122 2.5-2.5-1.121-2.5-2.5-2.5zm-4.5-6h-4v4.132h4v-4.132zm-6-2v-2.5c0-1.378-1.121-2.5-2.5-2.5s-2.5 1.122-2.5 2.5 1.121 2.5 2.5 2.5h2.5zm10.5 0c1.379 0 2.5-1.122 2.5-2.5s-1.121-2.5-2.5-2.5-2.5 1.122-2.5 2.5v2.5h2.5z"
/>
</svg>
</span>
<div class="service-content">
<h3 class="h4">Workshop & Tech Talks</h3>
<p>
Come attend our talks from various fields of Science that pique your
curiosity and fuel that budding Engineer in you
</p>
</div>
</div>
<!-- end service-item -->
<div class="column service-item" data-animate-el>
<span class="service-icon-block">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
>
<path
d="M12 0l-11 6v12.131l11 5.869 11-5.869v-12.066l-11-6.065zm-1 21.2l-6.664-3.555 4.201-2.801c1.08-.719-.066-2.359-1.243-1.575l-4.294 2.862v-7.901l8 4.363v8.607zm-6.867-14.63l6.867-3.746v4.426c0 1.323 2 1.324 2 0v-4.415l6.91 3.811-7.905 4.218-7.872-4.294zm8.867 6.03l8-4.269v7.8l-4.263-2.842c-1.181-.785-2.323.855-1.245 1.574l4.172 2.781-6.664 3.556v-8.6z"
/>
</svg>
</span>
<div class="service-content">
<h3 class="h4">Games & Quizzes</h3>
<p>
Bring in your squad and get competitive with or against them, in our
fun-filled tech themed activites and games
</p>
</div>
</div>
<!-- end service-item -->
</div>
<!-- end services-list -->
</div>
<!-- end services-content -->
<div class="s-services__content" style="margin-top: 100px">
<h3 class="text-pretitle" style="color: rgba(255, 255, 255, 0.7); text-align: center">
Why join us?
</h3>
<div class="row services-list block-lg-one-half block-tab-whole" data-animate-block>
<div class="column service-item" data-animate-el>
<span class="service-icon-block" style="color: #06ff00; font-size: 40px">
<i class="fa-solid fa-gift"></i>
</span>
<div class="service-content" style="margin-top: -40px; margin-bottom: 50px">
<h4 style="color: #fff">
Get new perspectives of engineering beyond the scope of your courses
</h4>
</div>
</div>
<!-- end service-item -->
<div class="column service-item" data-animate-el>
<span class="service-icon-block" style="color: #06ff00; font-size: 40px">
<i class="fa-solid fa-gift"></i>
</span>
<div class="service-content" style="margin-top: -40px; margin-bottom: 50px">
<h4 style="color: #fff">
Gain hands-on experience in technical fields of your interest
</h4>
</div>
</div>
<!-- end service-item -->
<div class="column service-item" data-animate-el>
<span class="service-icon-block" style="color: #06ff00; font-size: 40px">
<i class="fa-solid fa-gift"></i>
</span>
<div class="service-content" style="margin-top: -40px; margin-bottom: 50px">
<h4 style="color: #fff">
Discover competitions and events that intrigue and inspire you
</h4>
</div>
</div>
<!-- end service-item -->
<div class="column service-item" data-animate-el>
<span class="service-icon-block" style="color: #06ff00; font-size: 40px">
<i class="fa-solid fa-gift"></i>
</span>
<div class="service-content" style="margin-top: -40px; margin-bottom: 50px">
<h4 style="color: #fff">
Connect with students and faculty with similar interests
</h4>
</div>
</div>
<!-- end service-item -->
<div class="column service-item" data-animate-el>
<span class="service-icon-block" style="color: #06ff00; font-size: 40px">
<i class="fa-solid fa-gift"></i>
</span>
<div class="service-content" style="margin-top: -40px; margin-bottom: 50px">
<h4 style="color: #fff">And most importantly, have fun as you learn!</h4>
</div>
</div>
<!-- end service-item -->
</div>
<!-- end services-list -->
</div>
<!-- end services-content -->
<div
id="events-timeline"
class="row narrow section-header section-header--dark has-bottom-sep"
style="margin-top: 200px"
>
<div class="column lg-12">
<h3 class="text-pretitle">Events</h3>
<h1 class="text-display-title">What We Do.</h1>
</div>
<!-- end column -->
</div>
<!-- end section header -->
<section id="events" class="s-events target-section">
<div class="row events-content events-content--timeline">
<div class="col-six tab-full left">
<div class="timeline">
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">9:00am - 12:00pm</p>
<a href="./pages/events/minihack/index.html"
><h3>Mini Hack</h3></a
>
<h5>FACE</h5>
</div>
<div class="timeline__desc">
<p>
A short 3 hour long competitive hackathon where the
participants as a team of 3 are expected to portray their
creativity, technology skills, innovation, and team spirit by
giving a solution to the on spot given problem statement
withing the given time.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>CS Lab 3, Lab 4</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">9:30am - 10:30pm</p>
<a href="./pages/events/technology-trends/index.html"
><h3>Technology Trends in EMobility</h3></a
>
<h5>IEEE Student Body</h5>
</div>
<div class="timeline__desc">
<p>
The future of mobility is shifting to environmental-friendly,
connected, autonomous, and personalized commutes.😃 To dive
into the e-mobility, IEEE Student Branch, Amrita is with
Technology Trends in e-Mobility We have Dr.Latha Chembrakalam,
Vice - President & Head,Continental Automotive Components
Private Limited - Technical Center, India.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>A Block Conference Hall</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">9:00am - 11:00am</p>
<a href="./pages/events/whisper-challenge/index.html"
><h3>Whisper challenge</h3></a
>
<h5>IEEE COMSOC</h5>
</div>
<div class="timeline__desc">
<p>
*IEEE ComSoc* is pleased to bring to you,“ *The Whisper
challenge "* !! Guess what they are saying while they are on
mute. Play with us, as we get you the most hilarious guesses!
Be a part of this event with your friends in *teams of 4*.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>Valmiki Hall</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">9:00am - 12:00pm</p>
<a href="./pages/events/circuitmania/index.html"
><h3>Circuitmania</h3></a
>
<h5>VIDYUTH</h5>
</div>
<div class="timeline__desc">
<p>
It's a 3 round fun based technical event. The 1st round is
circuit analysis. As the name suggests players need to guess
whether the is correct or does it have faults. Next is puzzle
solving. Players need to reach from start point to end point
by solving the questions. Last part of the game is players
need to rig up a circuit with given components.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>Yoga Hall</strong></span
>
</p>
</div>
</div>
<!-- end timeline__block -->
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">9:00am - 10:30am</p>
<a href="./pages/events/snakes-and-ladders-ideathon/index.html"
><h3>Snakes and Ladders (Ideathon)</h3></a
>
<h5>IEEE SIGHT</h5>
</div>
<div class="timeline__desc">
<p>
IEEE SIGHT presents you a fun event which will include
technical and non technical. This is the phase one of
Ideathon.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>Krishna Hall</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">9:00am - 7:00pm</p>
<a href="./pages/events/valorant-championship/index.html"
><h3>Valorant Championship</h3></a
>
<h5>FORGE</h5>
</div>
<div class="timeline__desc">
<p>
A fast paced, knockout based gaming tournament. The 5v5
character-based tactical FPS shooter with precise gunplay and
unique agent abilities will enthral the players by satisfying
their adrenaline hunger.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>MBA - Reading Room</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">11:00am - 5:00pm</p>
<a href="./pages/events/bgmi-championship/index.html"
><h3>BGMI Championship</h3></a
>
<h5>FORGE</h5>
</div>
<div class="timeline__desc">
<p>
A fast paced, multilevel, score based battle royale
championship. The multiplayer game will test the skills of
individual players and integrity of their teams.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>E202</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">9:00am - 11:00am</p>
<a href="./pages/events/circuit-hunt/index.html"
><h3>Circuit hunt</h3></a
>
<h5>ECCIF</h5>
</div>
<div class="timeline__desc">
<p>
It's basically a circuit building where the whole circuit is
divided into 5 components and the participants need to find
those parts and wants to join them to a circuit
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>ATM Road</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">9:30am - 11:30am</p>
<a href="./pages/events/tech-connect/index.html"
><h3>Tech Connect</h3></a
>
<h5>Ieee sensory council</h5>
</div>
<div class="timeline__desc">
<p>
Participants will be provided with problem statements they can
pick one and work as teams. Components will be provided to
design circuits for problem statements Participants will be
guided and technical help will be provided by mentors .use of
internet for reference is also allowed
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>VLSI lab</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">10:00am - 12:00pm</p>
<a href="./pages/events/FlashpO(1)nt/index.html"
><h3>FlashpO(1)nt</h3></a
>
<h5>ACM/ACM-W</h5>
</div>
<div class="timeline__desc">
<p>
Stretch your fingers and put on your thinking caps because,
It's Time to Code! For Pravidhi 2022, ACM & ACM-W bring to
you: FLASHPO(1)NT May the code be with you! 🖥️
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>AI Lab,E Block</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">10:00am - 12:00pm</p>
<a href="./pages/events/face-off/index.html"
><h3>f.a.c.e-OFF</h3></a
>
<h5>CodeChef</h5>
</div>
<div class="timeline__desc">
<p>
CodeChef ASEB presents "face-OFF", a 1v1 knockout competitive
programming tournament. The contestants will be paired up to
compete against each other. The one who solves the given
problem faster, will move to the next round, while the other
one will be eliminated. "Everybody Has a Plan Until They Get
Punched in the Mouth." -Mike Tyson
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>CS Lab 1, Lab 2</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">10:00am - 12:00pm</p>
<a href="./pages/events/stockx/index.html"><h3>StockX</h3></a>
<h5>ACE</h5>
</div>
<div class="timeline__desc">
<p>
"StockX is a virtual stock trading competition which allows
students to trade with Virtual money. Each student will have a
starting capital their account with which they can buy and
sell stocks. The top performing trader at the end of the
competition will be rewarded with a prize and there will be
prizes for other positions too! Objective: To make students
aware of the stock market and how it works by allowing them to
virtually participate in stock market trading. To help them
analyze and understand the financial and market trends."
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>Rama Hall</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">10:00am- 12:30pm</p>
<a href="./pages/events/workshop-on-ic-engines/index.html"
><h3>Workshop on IC engines</h3></a
>
<h5>Ingenium</h5>
</div>
<div class="timeline__desc">
<p>
*IC ENGINES WORKSHOP* This is a unique opportunity to learn
about the principles of IC Engine Design firsthand.
Participants will be able to learn about the engineering
behind vehicle engine systems.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>E-209</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">11:00am - 1:00pm</p>
<a href="./pages/events/inter-departmental-challenge/index.html"
><h3>Inter Departmental Challenge</h3></a
>
<h5>Aavishkara+Sankhya</h5>
</div>
<div class="timeline__desc">
<p>
Hey Folks!! Which department you think has the REAL
ENGINEERING PRODIGIES? Who has the power to drive the world?
Get ready for the Mental Blitz! Come Join us and Prove that
your branch is the best!
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>Amriteshwari Hall</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">11:00am - 12:00pm</p>
<a href="./pages/events/tech-charades/index.html"
><h3>Tech Charades</h3></a
>
<h5>SAE</h5>
</div>
<div class="timeline__desc">
<p>
We will showcase our ATV and ask students to form a group of 2
and we will give them a part of the ATV. One person has to
enact and other person has to guess the part. We might also
have a trail run of the ATV if the ATV is repaired on time.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>Fountain Road</strong></span
>
</p>
</div>
</div>
<!-- end timeline__block -->
</div>
<!-- end timeline -->
</div>
<!-- end left -->
<div class="col-six tab-full right">
<div class="timeline">
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">11:00am - 12:30pm</p>
<a href="./pages/events/d2-design-and-debug/index.html"
><h3>D<sup>2</sup> - Design and Debug</h3></a
>
<h5>IEEE Innovation</h5>
</div>
<div class="timeline__desc">
<p>
IEEE Innovation club is organizing a event based on your
innovative skills of creating and designing a circuit based on
hints given. show your talent with a motive and make a best
circuit with given components. there is a cash price for the
best circuit and strong motive.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong
>Communication and Digital Systems Lab</strong
></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">11:30am - 1:00pm</p>
<a href="./pages/events/assemble-the-bots/index.html"
><h3>Assemble the bots</h3></a
>
<h5>ACROM/IEEE RAS</h5>
</div>
<div class="timeline__desc">
<p>
ACROM IEEE-RAS brings to you Assemble the bots. Join us to
explore and fiddle with all the parts of a robot. Get a chance
to learn its inner workings and how it is built! The event is
open to teams of 3! Can you and your team dismantle and
reassemble a robot the fastest?! Join us to find out!
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>Krishna Hall</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">2:00pm - 3:30pm</p>
<a href="./pages/events/taekeshis-castle-of-code/index.html"
><h3>Taekeshi's Castle Of Code</h3></a
>
<h5>ACM/ACM-W</h5>
</div>
<div class="timeline__desc">
<p>
"Ganbarimasu!" Takeshi's Castle is definitely a trip down
memory lane but have you ever thought about taking part in
this show? Well, let's make that thought a reality, tech
styles! For Pravidhi 2022, ACM & ACM-W bring to you:
*Takeshi's Castle of Code*
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>E block - 208,209,210 (ClassRooms)</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">2:00pm - 3:30pm</p>
<a href="./pages/events/bizquiz/index.html"><h3>BizQuiz</h3></a>
<h5>ACE</h5>
</div>
<div class="timeline__desc">
<p>
Now this is what you’d want to be looking forward to. Be it
the creatively conceived metaphors in economics or the
infamous trivia behind the logos of prominent conglomerates,
if you think you know it all and much more, we really, really
want to know if you do. Try getting yourself tested, or be
assured the Biz aka Business quiz would make you know what you
didn’t.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>Rama Hall</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">2:00pm - 3:30pm</p>
<a href="./pages/events/tech-triathlon/index.html"
><h3>Tech Triathlon</h3></a
>
<h5>FACE</h5>
</div>
<div class="timeline__desc">
<p>
Technology they say has potential to transform lives and
automatize manual processes to make man's job easier. The
journey towards this revolution starts with your first "hello
world" program. Well, there's no better way to start than a
competition. Get the competitive spirit out of you and
challenge yourself via the tech triathlon. FACE presents tech
triathlon, a competition with 3 rounds of multiple challenging
problems revolving around coding and it's basics! Be a part of
the revolution, be a part of the change you wish to see in the
world! Join us on date for a fun filled challenging session!
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>CS Lab 3, Lab 4</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">2:30pm - 4:00pm</p>
<a href="./pages/events/technical-treasure-hunt/index.html"
><h3>Technical treasure hunt</h3></a
>
<h5>IEEE WIE</h5>
</div>
<div class="timeline__desc">
<p>
Treasure hunts are information-based scavenger hunts, or
puzzle hunts, in which teams use their collective brainpower
to solve clues. Each team is presented with a group of
technical puzzles, or algorithmic clues, pseudocodes which
teams must solve in order to find a piece of information to
get final solution at the end of hunt.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>CS Lab 1, Lab 2</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">3:00pm - 5:30pm</p>
<a href="./pages/events/mini-auction/index.html"
><h3>Mini auction</h3></a
>
<h5>IEEE PES, PELS , VIDYUTH</h5>
</div>
<div class="timeline__desc">
<p>
Are you ready to bid? The auction is here. 🌝 Where the bid
completes the bidder Bid to win, the only mantra for auction.
🤗😁 "Grab it Now or Tomorrow It might be gone forever"
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>E206</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">3:30pm - 5:00pm</p>
<a href="./pages/events/iot-based-home-automation/index.html"
><h3>IoT based Home Automation</h3></a
>
<h5>Jido</h5>
</div>
<div class="timeline__desc">
<p>
Do you want to create your own home assistant like Jarvis and
be Ironman. This is your chance. IoT for home automation by
JIDO. For Pravidhi2022, Duration 60-90 min. Let's automate the
boring stuff 🤖
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>Embedded Systems Lab</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">3:30pm - 5:00pm</p>
<a href="./pages/events/ui-ux-design/index.html"
><h3>UI/UX Compete</h3></a
>
<h5>FACE</h5>
</div>
<div class="timeline__desc">
<p>
An event which aims to bring out the designer in the,
unleashing their creativity and technical skills. UI UX design
is a 2 hr long design challenge where the particiapnts will be
given a topic to desgn on. prozes will be given on the basis
of
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>Computer Lab 3, Lab 4</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">3:30pm - 6:30pm</p>
<a href="./pages/events/space-voyage/index.html"
><h3>Space Voyage</h3></a
>
<h5>Vyom</h5>
</div>
<div class="timeline__desc">
<p>
Space voyage is an event where we ask our participants to find
the way to the final stage with the help of clues we place,
the clues might not be in sequence, and we include the life
lines with the name 'wormholes' after certain level to easy
the participants journey, and basically it is a maze which
need to be cleared out by using intelligence, and overall the
event will be story based event.
</p>
<p>
Venue:
<span style="color: rgba(255, 255, 255, 0.7)"
><strong>Yoga Hall</strong></span
>
</p>
</div>
</div>
<div class="timeline__block">
<div class="timeline__bullet"></div>
<div class="timeline__header">
<p class="timeline__timeframe">5:00pm - 7:00pm</p>
<a href="./pages/events/tinkercad-tournament/index.html"
><h3>Tinkercad Tournament</h3></a
>
<h5>ACROM-IEEE RAS</h5>
</div>
<div class="timeline__desc">