forked from dvm-bitspilani/apogee-2020-main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1159 lines (1106 loc) · 56.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="description"
content="The annual Technical festival of BITS Pilani, Pilani campus featuring participation from all over India." />
<meta name="keywords" content="apogee, bits, pilani, tech, festival, fest, 2021" />
<meta name="author" content="DVM" />
<link rel="stylesheet/less" type="text/css" href="styles.less" />
<script src="less.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/loader.css" />
<link rel="stylesheet" href="css/new_loader.css" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/background.css" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/events.css" />
<link rel="stylesheet" href="css/contact.css" />
<link rel="stylesheet" href="css/aboutUs.css" />
<link rel="stylesheet" href="css/videos.css" />
<link rel="stylesheet" href="css/speakers.css" />
<link rel="stylesheet" href="css/allevents.css" />
<link rel="shortcut icon" href="assets/icons/favicon.png" type="image/x-icon" />
<link rel="stylesheet" href="css/flickity.css" />
<script src="js/flickity.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-153506436-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-153506436-1");
</script>
<title>APOGEE'21 | The Digitized Renaissance</title>
</head>
<body>
<div id="pagination">
<div class="line"></div>
<div class="individual opacity1Class" onclick="navigateTo('home')" id="homePagination">
<div class="rectangle">
<div class="dot"></div>
</div>
<div class="name">Home</div>
</div>
<div class="individual" onclick="navigateTo('aboutUs')" id="aboutUsPagination">
<div class="rectangle">
<div class="dot"></div>
</div>
<div class="name">About Us</div>
</div>
<div class="individual" onclick="navigateTo('videos')" id="videosPagination">
<div class="rectangle">
<div class="dot"></div>
</div>
<div class="name">Videos</div>
</div>
<div class="individual" onclick="navigateTo('speakers')" id="speakersPagination">
<div class="rectangle">
<div class="dot"></div>
</div>
<div class="name">Speakers</div>
</div>
<div class="individual" onclick="navigateTo('workshops')" id="workshopsPagination">
<div class="rectangle">
<div class="dot"></div>
</div>
<div class="name">Workshops</div>
</div>
<div class="individual" onclick="navigateTo('events')" id="eventsPagination">
<div class="rectangle">
<div class="dot"></div>
</div>
<div class="name">Kernel Events</div>
</div>
<div class="individual" onclick="navigateTo('contact')" id="contactPagination">
<div class="rectangle">
<div class="dot"></div>
</div>
<div class="name">Contact Us</div>
</div>
</div>
<section class="loader" id="loader">
<div class="logo-container">
<div class="logo">
<div class="row">
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="row">
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="row">
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="row">
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="row">
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="row">
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
<!-- <div class="deconstructed">
APOGEE'21
<div>APOGEE'21</div>
<div>APOGEE'21</div>
<div>APOGEE'21</div>
<div>APOGEE'21</div>
</div> -->
<div class="typewriter">
<div id="parent">
<div id="child"></div>
<div id="border"></div>
</div>
</div>
</div>
<!-- <div class="background-ele4 heading_container">
<div class=" theme-text loading-text" id="theme-text-landing" style="letter-spacing: 0">
<span class="loading-text-words">T</span>
<span class="loading-text-words">H</span>
<span class="loading-text-words">E</span>
<span class="loading-text-words" style="opacity: 0;"> A</span>
<span class="loading-text-words">D</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">G</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">T</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">Z</span>
<span class="loading-text-words">E</span>
<span class="loading-text-words">D</span>
<span class="loading-text-words" style="opacity: 0;"> A </span>
<span class="loading-text-words">R</span>
<span class="loading-text-words">E</span>
<span class="loading-text-words">N</span>
<span class="loading-text-words">A</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">S</span>
<span class="loading-text-words">S</span>
<span class="loading-text-words">A</span>
<span class="loading-text-words">N</span>
<span class="loading-text-words">C</span>
<span class="loading-text-words">E</span>
</div>
</div> -->
</section>
<!-- <section class="loader" id="loader">
<div class="robot_container">
<div>
<img src="assets/loader/With Eyes.svg" class="robot_body" />
</div>
<div>
<img src="assets/loader/Base.svg" class="robot_base" />
</div>
</div>
<div class="background-ele4 heading_container"> -->
<!-- <div class="theme-text loading-text" id="theme-text-landing" data-text="THE DIGITIZED RENAISSANCE"
style="color: rgb(42 42 42)">
THE DIGITIZED RENAISSANCE
</div> -->
<!-- <div class=" theme-text loading-text" id="theme-text-landing" style="letter-spacing: 0">
<span class="loading-text-words">T</span>
<span class="loading-text-words">H</span>
<span class="loading-text-words">E</span>
<span class="loading-text-words" style="opacity: 0;"> A</span>
<span class="loading-text-words">D</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">G</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">T</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">Z</span>
<span class="loading-text-words">E</span>
<span class="loading-text-words">D</span>
<span class="loading-text-words" style="opacity: 0;"> A </span>
<span class="loading-text-words">R</span>
<span class="loading-text-words">E</span>
<span class="loading-text-words">N</span>
<span class="loading-text-words">A</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">S</span>
<span class="loading-text-words">S</span>
<span class="loading-text-words">A</span>
<span class="loading-text-words">N</span>
<span class="loading-text-words">C</span>
<span class="loading-text-words">E</span>
</div>
</div>
</section> -->
<div class="events-dialogue-container">
<div class="events-dialogue-box">
<div class="close_button_container">
<img src="assets/icons/close.svg" class='close_svg' style="cursor: pointer" onclick="close_events()">
</div>
<div class="events-dialogue-text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Iste sapiente
molestiae eligendi blanditiis! Cupiditate, voluptas numquam? Eligendi
libero ratione iste deserunt quae accusantium quasi repellat.
Doloremque esse mollitia eligendi odio?
</div>
</div>
</div>
-->
<!-- <section class="noise-container">
<div class="noise-background"></div>
</section> -->
<!-- <section class="image-glitch-container">
<img src="assets/backgrounds/b3462e91132697.5e2993aa6d3fa.png" />
<img src="assets/backgrounds/NoPath - Copy (2).png" />
<img src="assets/backgrounds/b3462e91132697.5e2993aa6d3fa.png" />
<img src="assets/backgrounds/NoPath - Copy (2).png" />
</section> -->
<section class="backgrounds">
<div class="landing-background">
<img src="assets/backgrounds/Adam.png" class="background-ele" />
<div class="background-ele2">
<img src="assets/backgrounds/marsbw.jpg" />
</div>
<div class="background-ele3"></div>
<div class="background-ele4">
<div class="theme-text" id="theme-text-landing" style="letter-spacing: 0;">
<span class="loading-text-words">T</span>
<span class="loading-text-words">H</span>
<span class="loading-text-words">E</span>
<span class="loading-text-words" style="opacity: 0;"> A</span>
<span class="loading-text-words">D</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">G</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">T</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">Z</span>
<span class="loading-text-words">E</span>
<span class="loading-text-words">D</span>
<span class="loading-text-words" style="opacity: 0;"> A </span>
<span class="loading-text-words">R</span>
<span class="loading-text-words">E</span>
<span class="loading-text-words">N</span>
<span class="loading-text-words">A</span>
<span class="loading-text-words">I</span>
<span class="loading-text-words">S</span>
<span class="loading-text-words">S</span>
<span class="loading-text-words">A</span>
<span class="loading-text-words">N</span>
<span class="loading-text-words">C</span>
<span class="loading-text-words">E</span>
</div>
</div>
</div>
</section>
<div class="grid-background"></div>
<div class="star-container1">
<div id="stars"></div>
<div id="stars2"></div>
<div id="stars3"></div>
</div>
<div class="hamburger-icon">
<div></div>
<div></div>
<div></div>
</div>
<div class="hamburger-menu">
<div class="ham-item" onclick="navigateTo('home')">Home</div>
<div class="ham-item" onclick="navigateTo('aboutUs')">About Us</div>
<div class="ham-item" onclick="navigateTo('workshops')">Workshops</div>
<div class="ham-item" onclick="navigateTo('events')">Kernel events</div>
<div class="ham-item" onclick="openInNewTab('./sponsors.html')">
Sponsors
</div>
<div class="ham-item" onclick="togglePage('main', 'allEvents', true); setPaginationDisplay('none');">
All events
</div>
<div class="ham-item" onclick="openInNewTab('https://wallmag-2021.netlify.app/')">
WallMag
</div>
<div class="ham-item" onclick="openInNewTab('./developers.html')">
Developers
</div>
<div class="ham-item" onclick="openInNewTab('./kindstore.html')">
Kind Store
</div>
<!-- <div class="ham-item"onclick="window.open('Internships-Website/home.html', '_blank')">Internships</div> -->
<!-- <div class="ham-item" onclick="window.open('https://bits-apogee.org/campusambassador2021/', '_blank')">
Campus Ambassador
</div> -->
<!-- <div class="ham-item"onclick="window.open('https://bits-apogee.org/e-conclave/', '_blank')">Entrepreneurship Conclave</div> -->
<!-- <div class="ham-item" onclick="window.open('http://bitsmun.co.in/', '_blank')">
BITSMUN
</div> -->
<div class="ham-item" onclick="navigateTo('contact')">Contact Us</div>
</div>
<div class="wrapper" id="main">
<section class="home" id="home">
<div class="navbar">
<img src="assets/backgrounds/[email protected]" class="nav-logo" />
<div class="nav-link-container">
<div class="nav-links">
<span><a onclick="navigateTo('home')">Home</a></span>
</div>
<div class="nav-links">
<span><a onclick="navigateTo('aboutUs')">About Us</a></span>
</div>
<div class="nav-links">
<span><a onclick="navigateTo('events')">Kernel Events</a></span>
</div>
<div class="nav-links">
<span><a href="sponsors.html">Sponsors</a></span>
</div>
<div class="nav-links">
<span><a onclick="navigateTo('contact')">Contact Us</a></span>
</div>
<div class="nav-links register-button">
<a href="register.html" target="_blank">REGISTER</a>
</div>
<div class="hamburger"></div>
</div>
</div>
<div class="footer">
<div class="countdown"><span id="countdown"></span> TO GO</div>
<div class="mousey">
<div class="scroller"></div>
</div>
<div class="social-icons">
<a href="https://www.facebook.com/bitsapogee/" target="_blank">
<span class="facebook icon"></span>
</a>
<a href="https://www.instagram.com/bitsapogee/" target="_blank">
<span class="instagram icon"></span>
</a>
<a href="https://twitter.com/bitsapogee/" target="_blank">
<span class="twitter icon"></span>
</a>
</div>
</div>
</section>
<section class="aboutUs" id="aboutUs">
<div class="heading">
<span>About Us</span>
</div>
<div class="body">
<div class="ele-1"></div>
BITS, Pilani, India is back with the 39th edition of APOGEE(A
Professions Oriented Gathering over Educational Experiences)- the
institute’s annual technical extravaganza, from 20th to 21st March
2021, this time as The Digitized Renaissance! A melange of technology,
innovation and inspiration across space and time of humankind, this
technical conference will, as always, play host to the brightest minds
and thinkers in the country and world. From presenting papers and
projects at the oldest-of-its-kind events in the country, developing
amazing solutions to real-life cases and problems, exhibitions of the
best contraptions that man has made, guest lectures that tell stories
never heard before, to the college’s own literature festival, APOGEE
challenges the intellect of the participants and piques the minds of
the audience.
<div class="ele-2"></div>
<div class="ele-3"></div>
</div>
</section>
<section class="videos" id="videos">
<div class="heading">
<span>Videos</span>
</div>
<div class="body">
<div class="video-section">
<span class="video-name">APOGEE 2021 Theme Release</span>
<div class="thumbnail">
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/z-Pt8nBEa9E"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
<div class="video-section">
<span class="video-name">APOGEE 2019 Aftermovie</span>
<div class="thumbnail">
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/fIWJvvcutF0"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
</div>
</section>
<section class="speakers" id="speakers">
<div class="heading">
<span>Speakers</span>
</div>
<div class="speakers-body">
<div class="subheading">
<span>Think Again Live</span>
</div>
<div class="carousel"></div>
</div>
<div class="speakers-body">
<div class="subheading">
<span>Upcoming speakers</span>
</div>
<div class="carousel"></div>
<div class="nav">
<div class="buttons">
<div class="l-arrow"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="r-arrow"></div>
</div>
</div>
</div>
</section>
<section class="events" id="workshops">
<div class="heading">
<span>Workshops</span>
</div>
<div class="body">
<div class="card">
<div class="events-name">AutoCAD & Fusion 360</div>
<div class="events-content">
<img src="assets/workshops/AutoCAD.jpeg" alt="IoT" />
<span>
<div class="events-details">
Workshop on the use of Fusion 360 and AutoCAD. Includes some tips and tricks for speead
and...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog({
name: 'AutoCAD & Fusion 360 - By Autodesk',
desc: `Workshop on the use of Fusion 360 and AutoCAD. Includes some tips and tricks for speead and ease as well. Aimed at first year students and mechanical engineering students looking to gain an edge over the others in Engineering Graphics and Machine Drawing.<br/>`+
`<br/><strong>By:</strong> Autodesk` +
`<br/><strong>Date:</strong> March 13, 2021` +
`<br/><strong>Target Discipline:</strong> Mechanical`
})">
Details
</div>
</div>
</span>
</div>
</div>
<div class="card">
<div class="events-name">Basics of UI/UX Design</div>
<div class="events-content">
<img src="assets/workshops/ui.png" alt="IoT" />
<span>
<div class="events-details">
A workshop on basics of UI/UX design and it's application in the industry ...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog({
name: 'Basics of UI/UX Design - By Design Boat',
desc: `A workshop on basics of UI/UX design and it's application in the industry<br/>`+
`<br/><strong>By:</strong> Design Boat` +
`<br/><strong>Date:</strong> March 12, 2021` +
`<br/><strong>Target Discipline:</strong> Graphic Design`
})">
Details
</div>
</div>
</span>
</div>
</div>
<div class="card">
<div class="events-name">Resume/CV Preparation</div>
<div class="events-content">
<img src="assets/workshops/resume.jpeg" alt="IoT" />
<span>
<div class="events-details">
A workshop on how to make your resume stand out and...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog({
name: 'Resume/CV Preparation - Tips & Tricks - By CView',
desc: `A workshop on how to make your resume stand out and leave a lasting impact on your potential recruiter<br/>`+
`<br/><strong>By:</strong> CView` +
`<br/><strong>Date:</strong> March 18, 2021` +
`<br/><strong>Target Discipline:</strong> Placement Preparation`
})">
Details
</div>
</div>
</span>
</div>
</div>
<div class="card">
<div class="events-name">CANSLIM Investment Model</div>
<div class="events-content">
<img src="assets/workshops/invest.jpg" alt="IoT" />
<span>
<div class="events-details">
A workshop on the key elements and practical application of the CANSLIM Investment
model...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog({
name: `CANSLIM Investment Model - By William O'Neil`,
desc: `A workshop on the key elements and practical application of the CANSLIM Investment model developed by ace investor William J O'Neil<br/>`+
`<br/><strong>By:</strong> William O'Neil` +
`<br/><strong>Date:</strong> March 13, 2021` +
`<br/><strong>Target Discipline:</strong> Finance`
})">
Details
</div>
</div>
</span>
</div>
</div>
<div class="card">
<div class="events-name">Introduction to investing in Cryptocurrencies </div>
<div class="events-content">
<img src="assets/workshops/crypto.webp" alt="IoT" />
<span>
<div class="events-details">
A workshop on the basics of cryptocurrencies and how to effectively...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog({
name: `Introduction to investing in Cryptocurrencies - By CoinDCX`,
desc: `A workshop on the basics of cryptocurrencies and how to effectively invest in them to get maximum returns<br/>`+
`<br/><strong>By:</strong> CoinDCX` +
`<br/><strong>Date:</strong> March 15, 2021` +
`<br/><strong>Target Discipline:</strong> Finance`
})">
Details
</div>
</div>
</span>
</div>
</div>
<div class="card">
<div class="events-name">Introduction to Story Writing </div>
<div class="events-content">
<img src="assets/workshops/story.jpg" alt="IoT" />
<span>
<div class="events-details">
A masterclass on the art of writing stories
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog({
name: `Introduction to Story Writing - By Wattpad`,
desc: `A masterclass on the art of writing stories<br/>`+
`<br/><strong>By:</strong> Wattpad` +
`<br/><strong>Date:</strong> March 16, 2021` +
`<br/><strong>Target Discipline:</strong> General`
})">
Details
</div>
</div>
</span>
</div>
</div>
<div class="card">
<div class="events-name">Drone development</div>
<div class="events-content">
<img src="assets/workshops/drone.jpg" alt="IoT" />
<span>
<div class="events-details">
A workshop and drone and UAV development
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog({
name: `Drone development - By Hello skills`,
desc: `A workshop on basics of UI/UX design and it's application in the industry<br/>`+
`<br/><strong>By:</strong> Hello Skills` +
`<br/><strong>Date:</strong> March 14, 2021` +
`<br/><strong>Target Discipline:</strong> Mechanical`
})">
Details
</div>
</div>
</span>
</div>
</div>
<div class="card">
<div class="events-name">A career in Fintech</div>
<div class="events-content">
<img src="assets/workshops/ai-finance.jpg" alt="IoT" />
<span>
<div class="events-details">
A workshop giving an introduction to systematic method to understand financial...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog({
name: `Use of AI in Finance`,
desc: `A workshop giving an introduction to systematic method to understand financial services and for navigating a career in FinTech<br/>`+
`<br/><strong>By:</strong> Alphabeta` +
`<br/><strong>Speaker:</strong> Siva Visveswaran` +
`<br/><strong>Date:</strong> March 19, 2021` +
`<br/><strong>Target Discipline:</strong> Finance`
})">
Details
</div>
</div>
</span>
</div>
</div>
</div>
</section>
<section class="events" id="events">
<div class="heading">
<span>Events</span>
</div>
<div class="body">
<div class="card">
<div class="events-name">Armageddon - CSGO</div>
<div class="events-content">
<img src="assets/kernel-events (1)/arma.jpg" alt="IoT" />
<!-- <div class="glitchy_image_cont" id="cont-1">
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
</div> -->
<span>
<div class="events-details">
Counter Strike Global Offensive is a multiplayer first-person
shooter in which a team ...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog({
name: 'Armageddon',
desc: 'Counter Strike Global Offensive is a multiplayer first-person shooter in which a team of terrorists battle against a team of counter-terrorists, In Competitive mode of the game two teams of 5 are pitted against each other where the terrorists try to plant a bomb at either of the two sites(A or B), While the counter-terrorists try to prevent that. The tournament will be a knockout based tournament , all the matches until the Semi-Finals will be BO1 where the map will be chosen based on a veto process, The Semi-Final and the Final will be BO3.'
})">
Details
</div>
</div>
<!-- <div class="view-detail-button">View Details</div> -->
</span>
</div>
</div>
<div class="card">
<div class="events-name">ICL</div>
<div class="events-content">
<img src="assets/kernel-events (1)/pexels-photo-3862143.jpeg" alt="IoT" />
<!-- <div class="glitchy_image_cont" id="cont-2">
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
</div> -->
<span>
<div class="events-details">
Are you the jester of your group? Do you find the table cackling
with laughter at your jokes? ...
</div>
<!-- <div class="view-detail-button">View Details</div> -->
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog({
name: 'ICL',
desc: 'NA'
})">
Details
</div>
</div>
</span>
</div>
</div>
<div class="card">
<div class="events-name">Aerostable Lynyrd Skynyrd</div>
<div class="events-content">
<img src="assets/all-events/apogee.jpg" alt="IoT" />
<!-- <div class="glitchy_image_cont" id="cont-3">
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
</div> -->
<span>
<div class="events-details">
The tragic end of Lynyrd Skynyrd, a famous rock band, is well known...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog({
name: 'Aerostable Lynyrd Skynyrd',
desc: ' The tragic end of Lynyrd Skynyrd, a famous rock band, is well known. The plane crash of Turkish Airlines Flight 981, Little Baldon Hastings accident, South African Airways Flight 201'+
'and many more have generated concern for better aircraft design.The onus to prevent another'+
'such tragedy is upon us: the engineers of tomorrow. The better aircraft design will facilitate'+
'several advantages including improved performance parameters such as lift-to-drag ratio (L/D), ratio of empty weight to MTOW, and specific fuel consumption.\n'+
'The participants will be required to submit their CAD file along with an ANSYS Simulation report.\n'+
'Additionally, their model will be judged based on mechanical, ergonomic, aesthetic and environmental factors.'
})">
Details
</div>
</div>
<!-- <div class="view-detail-button">View Details</div> -->
</span>
</div>
</div>
<div class="card">
<div class="events-name">AI Robo Soccer</div>
<div class="events-content">
<img src="assets/kernel-events (1)/robo-soccer.jpeg" alt="IoT" />
<!-- <div class="glitchy_image_cont" id="cont-4">
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
</div> -->
<span>
<div class="events-details">
A multi-agent environment would be provided to the particiapnts
who would have to develop intelligent....
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog(
{
name: 'AI Robo Soccer',
desc: 'A multi-agent environment would be provided to the particiapnts who would have to develop intelligent scripts to train their team to win.'
}
)">
Details
</div>
</div>
<!-- <div class="view-detail-button">View Details</div> -->
</span>
</div>
</div>
<div class="card">
<div class="events-name">SMS</div>
<div class="events-content">
<img src="assets/kernel-events (1)/sms.jpeg" alt="IoT" />
<!-- <div class="glitchy_image_cont" id="cont-5">
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
</div> -->
<span>
<div class="events-details">
Stock Market Simulation is the flagship event of Economics and
Finance Association in...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog(
{
name: 'SMS',
desc: 'NA'
}
)">
Details
</div>
</div>
<!-- <div class="view-detail-button">View Details</div> -->
</span>
</div>
</div>
<div class="card">
<div class="events-name">Mechanix</div>
<div class="events-content">
<img src="assets/kernel-events (1)/mechanix.jpeg" alt="IoT" />
<!-- <div class="glitchy_image_cont" id="cont-6">
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
</div> -->
<span>
<div class="events-details">
MechaNix! Ever wondered about how things are made? Do
you feel the urge to learn about the working ...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog(
{
name: 'MechaNix',
desc: 'MechaNix! Ever wondered about how things are made? Do you feel the urge to learn about the working about a daily used object? So we present MechaNix, an event for inquistive minds. The event will first have an aptitude test which will serve as an elimination round.Selected participants would be asked to model a daily use-object in CAD software (Fusion 360) and they would be evaluated based on the CAD model, speed and the assembly of the model. '
}
)">
Details
</div>
</div>
<!-- <div class="view-detail-button">View Details</div> -->
</span>
</div>
</div>
<div class="card">
<div class="events-name">Hackatronics</div>
<div class="events-content">
<img src="assets/kernel-events (1)/hackatronix.jpeg" alt="IoT" />
<!-- <div class="glitchy_image_cont" id="cont-7">
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
</div> -->
<span>
<div class="events-details">
Are you one of those people who itch to open it
up whenever you look at a new gadget? ...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog(
{
name: 'Hackatronics',
desc: 'Are you one of those people who itch to open it up whenever you look at a new gadget? Do you share the spirit of gadget-hacking? Do believe that you can rectify existing designs for the better? If so, you\'re looking at the right event. This APOGEE, we give you the opportunity to open things up and make something useful and innovative out of them. Your resourcefulness will be put to the test as you work out the design for the problem provided to you'
}
)">
Details
</div>
</div>
<!-- <div class="view-detail-button">View Details</div> -->
</span>
</div>
</div>
<div class="card">
<div class="events-name">Gambling Mathematics</div>
<div class="events-content">
<img src="assets/kernel-events (1)/satta.jpeg" alt="IoT" />
<!-- <div class="glitchy_image_cont" id="cont-8">
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
</div> -->
<span>
<div class="events-details">
You don't need money for Gambling, just some passion
for Mathematics! Start with some points, ...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog(
{
name: 'Gambling Mathematics',
desc: ' You don\'t need money for Gambling, just some passion for Mathematics! Start with some points, and bet a percent (5% - 95%) of them before a question appears. If you get it right, you get points double your bet, else you lose your bet. Keep going for 10 questions, and don\'t go negative! Instructions - \n'+
'Each team can play only once.\n \
'+
'A person can only be from one team.\n'+
'All scores will be put up in the leaderboard. At end of the day 1, top teams are selected for round 2.\n'+
'The topic for the upcoming question will be displayed while betting'
}
)">
Details
</div>
</div>
<!-- <div class="view-detail-button">View Details</div> -->
</span>
</div>
</div>
<div class="card">
<div class="events-name">Srikant Viswesvaraih Analog Design Contest</div>
<div class="events-content">
<img src="assets/kernel-events (1)/adc.jpeg" alt="IoT" />
<!-- <div class="glitchy_image_cont" id="cont-9">
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
<div class="glitchy_image"></div>
</div> -->
<span>
<div class="events-details">
Are you an electronics buff? Do you want to convert theoretical
knowledge into a practical application?...
</div>
<div class="events-details-button-container">
<div class="events-details-button" onclick="events_dialog(
{
name: 'Srikant Viswesvaraih Analog Design Contest',
desc: 'Are you an electronics buff? Do you want to convert theoretical knowledge into a practical application? Can you do it fast enough? Then, Analog Design Challenge is the place for you. You have to design an electronic circuit that meets the requirements of the problem by using the components provided by us'
}
)">
Details
</div>
</div>
<!-- <div class="view-detail-button">View Details</div> -->
</span>
</div>
</div>