forked from SaptarshiPani/AICSSYC-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3123 lines (2641 loc) · 110 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AICSSYC</title>
<!-- CSS -->
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,600"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="assets/css/form-elements.css">
<link rel="stylesheet" href="assets/css/style1.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/media-queries.css">
<link rel="stylesheet" href="assets/css/timer.css">
<link rel="stylesheet" href="assets/css/timeline.css">
<link rel="stylesheet" href="assets/css/faq.css">
<link rel="stylesheet" href="assets/css/footer.css">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous" />
<link rel="icon" href="assets/img/1.png" type="image/x-icon">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/all.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- <link rel="stylesheet" href="timeline.css"> -->
<!-- <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,200&display=swap" rel="stylesheet"> -->
<!-- <link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&family=Poppins:ital,wght@1,200&display=swap"
rel="stylesheet"> -->
</head>
<!-- For body scrollspy-->
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="60">
<!-- PreLoader -->
<!-- <div class="loader">
<div class="loader-img"></div>
</div>
<!-- Top menu -->
<!-- this is where the problem was -->
<!-- <nav class="navbar navbar-inverse navbar-fixed-top navbar-no-bg" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
Collect the nav links, forms, and other content for toggling
<div class="collapse navbar-collapse" id="top-navbar-1">
<ul class="nav navbar-nav">
<div class="collapse navbar-collapse"">
<ul class="nav navbar-nav">
<li><a class="scroll-link" href="#abt">About</a></li>
<li><a class="scroll-link" href="#facmentor"> Our Speakers</a></li>
<li><a class="scroll-link" href="#ourachievements">Achievements</a></li>
<li><a class="scroll-link" href="#eventshosted">Events </a></li>
<li><a class="scroll-link" href="#imggallery">Sponsors</a></li>
<li><a class="scroll-link" href="#footer">Contact Us</a></li>
</ul>
</div>
</div>
</nav> -->
<div id="preloader" class="preloader fixed-top">
<div id="ctn-preloader">
<div class="preloader_loader">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="preloader_communique">AICSSYC</div>
</div>
</div>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-dark" aria-label="Offcanvas navbar large">
<div class="container-fluid alignment" style="margin-left: 50px; margin-right:50px;">
<button class="navbar-toggler alignment" type="button" data-bs-toggle="offcanvas"
data-bs-target="#offcanvasNavbar2" aria-controls="offcanvasNavbar2">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand mx-auto mx-lg-0 d-flex align-items-center " href="#">
<div class="d-flex align-items-center"><img src="assets/img/AICSSYC3.png" alt="" height="40"
width="100%" style="margin:auto ;"></div>
</a>
<div class="offcanvas offcanvas-end text-bg-dark" tabindex="-1" id="offcanvasNavbar2"
aria-labelledby="offcanvasNavbar2Label">
<div class="offcanvas-header">
<h5 class="offcanvas-title display-1" id="offcanvasNavbar2Label"></h5>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="offcanvas"
aria-label="Close"></button>
</div>
<div class="offcanvas-body" style="text-align: center;">
<div class="navbar-nav justify-content-end flex-grow-1 pe-3">
<li class="nav-item">
<a class="nav-link active underline" aria-current="page" href="#"
style="margin: 1.0rem 0;"><span>Home</span></a>
</li>
<li class="nav-item">
<a class="nav-link active underline" aria-current="page" href="#linkabout"
style="margin: 1.0rem 0;"><span>About</span></a>
</li>
<li class="nav-item">
<a class="nav-link active underline" aria-current="page" href="#tracks"
style="margin: 1.0rem 0;"><span>Tracks</span></a>
</li>
<li class="nav-item">
<a class="nav-link active underline" aria-current="page" href="#speakers"
style="margin: 1.0rem 0;"><span>Speakers</span></a>
</li>
<li class="nav-item">
<a class="nav-link active underline" aria-current="page" href="#timeline"
style="margin: 1.0rem 0;"><span>Timeline</span></a>
</li>
<li class="nav-item">
<a class="nav-link active underline" aria-current="page" href="#venue"
style="margin: 1.0rem 0;"><span>Venue</span></a>
</li>
<li class="nav-item">
<a class="nav-link active underline" aria-current="page" href="#sponsors"
style="margin: 1.0rem 0;"><span>Sponsors</span></a>
</li>
<li class="nav-item">
<a class="nav-link active underline" aria-current="page" href="#faq"
style="margin: 1.0rem 0;"><span>FAQs</span></a>
</li>
<li class="nav-item">
<a class="nav-link active underline" aria-current="page" href="#contact"
style="margin: 1.0rem 0;"><span>Contact</span></a>
</li>
</div>
</div>
</div>
</div>
</nav>
<!----------------- HOME--------------------- -->
<div class="top-content" id="home">
<div class="inner-bg home_bg">
<div class="container">
<div class="row" style="opacity: 1.0">
<div class="col-sm-8 col-sm-offset-2 text">
<div class="logo wow fadeInDown" style="justify-content: center;">
<div class="d-flex justify-content-center"><img src="assets/img/AICSSYC.png"></div>
<br><br>
<div class="d-flex justify-content-center"><button class="btn_register">Register</button>
</div>
<!-- <a href="#" class="btn-get-started scrollto" style="color: black;" id="button-anon-pen" onclick="register()">REGISTER
</a> -->
<!-- <button id="myBtn" class="btn accept-btn">Register</button> -->
</div>
<!-- <span class="">Welcome to AICCSSYC event</span>
<br>
<h2 class="">This is organised by IEEE</h2>
<h3 class="font"><b>Hi everyone, <br> </b>AICCSSYC aims create an
atmosphere which promotes research and innovative ideas.</h3> -->
</div>
<!-- <div class="top-big-link wow fadeInUp regis-btn" style="display: grid;
place-items: center;">
<a class="btn btn-link-1 scroll-link" href="#abt">Register here→</a>
<a href="/" target="_blank">
<span> </span>
<span> </span>
<span> </span>
<span> </span>
Register
</a>
</div> -->
</div>
</div>
</div>
</div>
<!-- ----------------------------HOME END---------------------------- -->
<!-- -------------------------EVENT STARTS IN--------------------- -->
<main class="reveal">
<!-- <h4 style="font-size: 3em;">EVENT STARTS IN</h4> -->
<div style="text-align: center;">
<div class="my-5 py-5"> <span class="heading_new">Event <span class="heading_new"
style="color: #2370d4;">Starts In</span></span></div>
</div>
<br>
<br>
<div>
<div class="alert">
<div class="countdown">
<div class="countdown-block">
<span class="days time-elem">
<span class="top">00</span>
<span class="top-back">
<span>00</span>
</span>
<span class="bottom">00</span>
<span class="bottom-back">
<span>00</span>
</span>
</span>
<span class="title">Days</span>
</div>
<div class="countdown-block">
<span class="hours time-elem">
<span class="top">00</span>
<span class="top-back">
<span>00</span>
</span>
<span class="bottom">00</span>
<span class="bottom-back">
<span>00</span>
</span>
</span>
<span class="title">Hours</span>
</div>
<div class="countdown-block">
<span class="minutes time-elem">
<span class="top">00</span>
<span class="top-back">
<span>00</span>
</span>
<span class="bottom">00</span>
<span class="bottom-back">
<span>00</span>
</span>
</span>
<span class="title">Minutes</span>
</div>
<div class="countdown-block">
<span class="seconds time-elem">
<span class="top">00</span>
<span class="top-back">
<span>00</span>
</span>
<span class="bottom">00</span>
<span class="bottom-back">
<span>00</span>
</span>
</span>
<span class="title">Seconds</span>
</div>
</div>
</main>
</div>
</div>
<!-- ------------------- EVENT STARTS IN END----------------------- -->
<br><br>
<!-- About Us-->
<!-- <div class="abt-container section-container">
<div class="container">
<div class="row">
<div class="col-sm-12 services section-description wow fadeIn">
<h2><b>About Us</b></h2>
<div class="divider-1 wow fadeInUp"><span></span></div>
</div>
</div>
<center><span><span class="heading_new">ABOUT</span></span></center>
<p>
<h3>IEEE is the world's largest technical professional organisation that is working
constantly towards the advancement of technology and to promote research,
mostly in the fields of Electrical and Electronics engineering, with a special
emphasis on helping the society.
The Jadavpur University IEEE student branch, founded in 2010, belongs to the
Kolkata section of Region 10 of the organisation. We are a group of enthusiastic
students who are promoting innovative ideas both within and outside the campus.</h3><br><br>
</p>
</div>
</div> -->
<!-- -------------------------------ABOUT US----------------------- -->
<div class="linkabout" id="linkabout">
<section class="about section-padding container-fluid my-3" id="section-2">
<div class="container-about">
<div class="container reveal">
<div class="container mx-auto my-3 pt-5 pb-3" style="text-align: center;">
<div class="my-5 py-5"> <span class="heading_new">Event <span class="heading_new"
style="color: #2370d4">Details</span></span>
</div>
<div class="container mx-auto px-5" style="text-align: center;">
<span class="mb-3 display-5" style="font-weight: 600;">Where the TECH is without limit
</span>
<br><br><br>
<p class="fs-3">All India IEEE Computer Society Students and Young professionals' Congress,
AICSSYC '22, is the largest IEEE event held annually in India, to provide a platform for
students, young professionals and leaders who are trailblazers in their respective
fields, to come together and contribute to the melting pot of technology and scientific
fervour.
To be a part of this yearly spectacle is thus, an honour in itself and a rare chance to
realise where one's true potential lies.
The takeaways of knowledge and experience from this massive event will go a long way in
fueling one's journey towards being a distinguished member of the field one is
passionate about pursuing.
</p>
<!-- <h4 class="display-5">Thus, AICSSYC is a novel event that fits the above description down to
the
last
syllable.</h4> -->
</section>
</div>
<!-- -------------------------------ABOUT US / EVENT DETAILS END----------------------- -->
<!-- ---------------------------------EVENT TRACKS------------------------------- -->
<div id="tracks">
<center class="reveal">
<div class="my-5 py-5"> <span class="heading_new">Event <span class="heading_new"
style="color: #2370d4;">Tracks</span></span></div>
<div class="d-flex col-ukd" style="justify-content: space-evenly;">
<div class="wrapper">
<!-- <header>
<h1>Card Expand Animation</h1>
<nav><span></span><span></span></nav>
<p>How to animate card expand opening</p>
</header> -->
<!-- <div class="cards">
<div class="card" data-type="html">
<h2>HTML5</h2>
</div>
<div class="card" data-type="css">
<h2>CSS3</h2>
</div>
<div class="card" data-type="mongo">
<h2>Mongo</h2>
</div>
<div class="card" data-type="javascript">
<h2>Javascript</h2>
</div>
<div class="card" data-type="nodejs">
<h2>NodeJs</h2>
</div>
<div class="card" data-type="sql">
<h2>SQL</h2>
</div>
</div>
</div>
-->
<!-- <div class="container_tracks">
<div class="card_tracks">
<div class="imgbox">
<img src="event_tracks/leadership.png" alt="" srcset="">
</div>
<div class="content_tracks">
<h2>leadership</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Assumenda explicabo </p>
</div>
</div>
</div> -->
<div
class="container_tracks d-flex align-items-center justify-content-center position-relative flex-wrap">
<div class="card_tracks d-flex position-relative flex-column">
<div class='imgContainer'>
<img src='assets/img/event_tracks/leadership.png'> <br>
<span class="fs-3"><strong>
<font size="+2">Leadership</font>
</strong></span>
</div>
<div class="content_tracks">
<p class="fs-3">Aspire today. Inspire tomorrow.
AICSSYC '22 will be the perfect platform to look within and seek out the budding leader inside you. Equipped with an exclusive roadmap received from established leaders themselves, chisel out your own path and hone the dormant leadership skills in your personality.</p>
</div>
</div>
<div class="card_tracks d-flex position-relative flex-column">
<div class='imgContainer'>
<img src='assets/img/event_tracks/technology.png'> <br>
<span class="fs-3"><strong>
<font size="+2">Technology</font>
</strong></span>
</div>
<div class="content_tracks">
<p class="fs-3">With the world being taken over by the technological revolution in every sphere, be sure to gain the perfect insights here, on how to be one of those who know how to keep moving the giant wheel of technology for the betterment of the society. Learn from the best of the technocrats assembled under the same sky and beyond the four walls of a room.</p>
</div>
</div>
<div class="card_tracks d-flex position-relative flex-column">
<div class='imgContainer'>
<img src='assets/img/event_tracks/handson.png'> <br>
<span class="fs-3"><strong>
<font size="+2">Hands On</font>
</strong></span>
</div>
<div class="content_tracks">
<p class="fs-3">Set your mind to brilliant projects and connect the dots yourself, with the illuminating guidance of the professionals who will be assembled at AICSSYC '22. Let your mind soar beyond the periphery of theoretical knowledge, as you solve real-life problems with your own hands and minds. That is the true road to success.</p>
</div>
</div>
</div>
<!-- <div
class="container_tracks d-flex align-items-center justify-content-center position-relative flex-wrap">
<div class="card_tracks d-flex position-relative flex-column">
<div class='imgContainer'>
<img src='event_tracks/leadership.png' width="100" height="100"> <br>
<span class="fs-3"><strong>
<font size="+2">Event Track</font>
</strong></span>
</div>
<div class="content_tracks">
<p class="fs-3">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse
eget
velit tristique, sollicitudin leo viverra, suscipit neque. Aliquam ut facilisis
urna, in
pretium nibh. Morbi in leo in eros commodo volutpat ac sed dolor.</p>
</div>
</div> -->
<!-- <div class="card_tracks d-flex position-relative flex-column">
<div class='imgContainer'>
<img src='event_tracks/leadership.png' width="100" height="100"> <br>
<span class="fs-3"><strong>
<font size="+2">Event Track</font>
</strong></span>
</div>
<div class="content_tracks">
<p class="fs-3">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse
eget
velit tristique, sollicitudin leo viverra, suscipit neque. Aliquam ut facilisis
urna, in
pretium nibh. Morbi in leo in eros commodo volutpat ac sed dolor.</p>
</div>
</div> -->
<!-- <div class="card_tracks d-flex position-relative flex-column">
<div class='imgContainer'>
<img src='event_tracks/leadership.png' width="100" height="100"> <br>
<span class="fs-3"><strong>
<font size="+2">Event Track</font>
</strong></span>
</div>
<div class="content_tracks">
<p class="fs-3">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse
eget
velit tristique, sollicitudin leo viverra, suscipit neque. Aliquam ut facilisis
urna, in
pretium nibh. Morbi in leo in eros commodo volutpat ac sed dolor.</p>
</div>
</div> -->
</div>
<!-- <div class="event_cards" id="click1">
<img src="event_tracks/leadership.png" class="img-fluid avatar-image"
alt=""><br><span class="fs-4">Technology
</span>
<p class="fs-4">Lorem ipsum dolor sit amet consectetur adipisicing elit. Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempora repudiandae esse ut officiis molestias nemo, quae ipsum atque illo inventore aperiam dolorem eaque placeat recusandae saepe itaque autem facere perferendis? </p>
<p id="event1">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Nisi, ducimus?</p>
</div>
<div class="event_cards"><img src="event_tracks/technology.png" class="img-fluid avatar-image"
alt=""><br><span class="fs-4">Technology</span>
<p class="fs-4">Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempora repudiandae esse ut officiis molestias nemo, quae ipsum atque illo inventore aperiam dolorem eaque placeat recusandae saepe itaque autem facere perferendis? </p>
</div>
<div class="event_cards"><img src="event_tracks/handson.png" class="img-fluid avatar-image"
alt=""><br><span class="fs-4">Hands On.</span>
<p class="fs-4">Lorem ipsum dolor sit amet consectetur adipisicing elit.Tempora repudiandae esse ut officiis molestias nemo, quae ipsum atque illo inventore aperiam dolorem eaque placeat recusandae saepe itaque autem facere perferendis? </p>
</div>
</div>
<br>
<div class="d-flex col-ukd" style="justify-content: space-evenly;">
<div class="event_cards"><img src="rev.png" class="img-fluid avatar-image" alt=""><br><span class="fs-4">Technology</span><span
class="fs-4">Lorem
ipsum, dolor sit amet consectetur adipisicing elit.Tempora repudiandae esse ut officiis molestias nemo, quae ipsum atque illo inventore aperiam dolorem eaque placeat recusandae saepe itaque autem facere perferendis? </span></div>
<div class="event_cards"><img src="rout.png" class="img-fluid avatar-image" alt=""><br><span class="fs-4">Technology</span><span
class="fs-4">Lorem
ipsum, dolor sit amet consectetur adipisicing elitTempora repudiandae esse ut officiis molestias nemo, quae ipsum atque illo inventore aperiam dolorem eaque placeat recusandae saepe itaque autem facere perferendis? .</span></div>
<div class="event_cards"><img src="com.png" class="img-fluid avatar-image" alt=""><br><span class="fs-4">Technology</span><span
class="fs-4">Lorem
ipsum, dolor sit amet consectetur adipisicing elit.Tempora repudiandae esse ut officiis molestias nemo, quae ipsum atque illo inventore aperiam dolorem eaque placeat recusandae saepe itaque autem facere perferendis? </span></div>
</div> -->
</div>
</center>
</div>
<!-- -------------------------------------EVENT TRACKS END------------------------- -->
<!-- <div> -->
<!-- <center>
<span class="heading_new" style="border-radius: 7%;">TRACKS</span>
</center>
<br>
<br>
<center>
<div class="card mb-3" style="max-width: 1200px; height: auto;border-color: rgb(255, 255, 255);">
<div class="row g-0">
<div class="col-md-4">
<img src="/assets/img/panel.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h3 class="card-title" style="font-style: bold ;">Card title</h3>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to
additional content. This content is a little bit longer.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
<div class="card mb-3" style="max-width: 1200px; height: auto;border-color: rgb(255, 255, 255);">
<div class="row g-0">
<div class="col-md-4">
<img src="/assets/img/panel.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h3 class="card-title" style="font-style: bold ;">Card title</h3>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to
additional content. This content is a little bit longer.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
<div class="card mb-3" style="max-width: 1200px; height: auto;border-color: rgb(255, 255, 255);">
<div class="row g-0">
<div class="col-md-4">
<img src="/assets/img/panel.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h3 class="card-title" style="font-style: bold ;">Card title</h3>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to
additional content. This content is a little bit longer.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
</center> -->
<!-- </div> -->
<!-- Speakers Section -->
<!-- <div class="facmentor-container section-container">
<div class="container">
<div class="row">
<div class="col-sm-12 services section-description wow fadeIn">
<center>
<span><span class="heading_new">OUR SPEAKERS</span></span>
</center>
<div class="divider-1 wow fadeInUp"><span></span></div>
</div>
</div>
<div class="row">
<div class="col-sm-4 services-box wow fadeInUp"><a
href="https://en.wikipedia.org/wiki/Jadavpur_University">
<div class="row">
<div class="col-sm-4">
<img src="img.png" class="img-circle">
</div>
<div class="col-sm-8">
<h3>Dr RAY</h3>
<p>Professor of IIMA>
</div>
</div>
</a>
</div>
<div class="col-sm-4 services-box wow fadeInDown">
<a href="https://en.wikipedia.org/wiki/Jadavpur_University">
<div class="row">
<div class="col-sm-4">
<img src="img.png" class="img-circle">
</div>
<div class="col-sm-8">
<h3>Prof Trishna </h3>
<p>Professor of IITK</p>
</div>
</div>
</a>
</div>
<div class="col-sm-4 services-box wow fadeInUp"><a
href="https://en.wikipedia.org/wiki/Jadavpur_University">
<div class="row">
<div class="col-sm-4">
<img src="img.png" class="img-circle">
</div>
<div class="col-sm-8">
<h3>Prof. R pal</h3>
<p>Professor, phy dept</p>
</div>
</div>
</a>
</div>
</div>
</div>
</div> -->
<!-- ------------------------------------SPEAKERS----------------------------------- -->
<div id="speakers">
<div class="speakers reveal">
<div class="my-5 py-5"> <span class="heading_new">OUR <span class="heading_new"
style="color: #2370d4;">SPEAKERS</span></span>
</div>
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="col-items">
<div class="shadow p-3 mb-5 rounded im">
<img src="assets/img/speakers/bill.jpg" alt=""
class="img-fluid imgg rounded-circle img-thumbnail shadow-sm">
<h5 class="fs-2">William Bill Gropp</h5><span class="small text-uppercase text-muted">
IEEE computer society president 2021-2022</span>
<ul class="social mb-0 list-inline mt-3">
<li class="list-inline-item"><a href="https://www.facebook.com/william.gropp"
target="_blank" class="social-link"><i class="fa fa-facebook-f"></i></a>
</li>
<li class="list-inline-item"><a href="https://wgropp.cs.illinois.edu/"
target="_blank" class="social-link"><i class="fa fa-info-circle"></i></a>
</li>
<li class="list-inline-item"><a
href="https://www.linkedin.com/in/bill-gropp-41834b/" target="_blank"
class="social-link"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="col-items">
<div class="shadow p-3 mb-5 rounded im"><img src="assets/img/speakers/eric.jpg" alt=""
class="img-fluid imgg rounded-circle img-thumbnail shadow-sm">
<h5 class="fs-2">Eric Berkowitz</h5><span class="small text-uppercase text-muted">Global
Director of Membership Computer Society</span>
<ul class="social mb-0 list-inline mt-3">
<li class="list-inline-item"><a href="https://www.facebook.com/eric.berkowitz.31"
target="_blank" class="social-link"><i class="fa fa-facebook-f"></i></a>
</li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/ericberkowitz/"
target="_blank" class="social-link"><i
class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<div class="col-items">
<div class="shadow p-3 mb-5 rounded im"><img src="assets/img/speakers/sivam.jpg" alt=""
class="img-fluid imgg rounded-circle img-thumbnail shadow-sm">
<h5 class="fs-2">Shivam Abhilash</h5><span
class="small text-uppercase text-muted">Vice-Chair at IEEE CS Students and SYP MGA
Board</span>
<ul class="social mb-0 list-inline mt-3">
<li class="list-inline-item"><a href="https://www.facebook.com/shivam.abhilash"
target="_blank" class="social-link"><i class="fa fa-facebook-f"></i></a>
</li>
<li class="list-inline-item"><a href="https://shivamabhilash.com/" target="_blank"
class="social-link"><i class="fa fa-info-circle"></i></a></li>
<li class="list-inline-item"><a href="https://www.instagram.com/shivamabhilash/"
target="_blank" class="social-link"><i class="fa fa-instagram"></i></a></li>
<li class="list-inline-item"><a href="https://www.linkedin.com/in/shivam-1996/"
target="_blank" class="social-link"><i
class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
</div>
</div>
<!-- <div class="col-lg-4 col-md-6 col-sm-12">
<div class="col-items">
<div class="shadow p-3 mb-5 rounded im"><img src="img.png" alt=""
class="img-fluid imgg rounded-circle img-thumbnail shadow-sm">
<h5 class="fs-2">Unknown Speaker</h5><span class="small text-uppercase text-muted">ML
Gawd</span>
<ul class="social mb-0 list-inline mt-3">
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-facebook-f"></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-instagram"></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
</div>
</div> -->
<!-- <div class="col-lg-4 col-md-6 col-sm-12">
<div class="col-items">
<div class="shadow p-3 mb-5 rounded im"><img src="img.png" alt=""
class="img-fluid imgg rounded-circle img-thumbnail shadow-sm">
<h5 class="fs-2">Unknown Speaker</h5><span class="small text-uppercase text-muted">ML
Gawd</span>
<ul class="social mb-0 list-inline mt-3">
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-facebook-f"></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-instagram"></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
</div>
</div> -->
<!-- <div class="col-lg-4 col-md-6 col-sm-12">
<div class="col-items">
<div class="shadow p-3 mb-5 rounded im"><img src="img.png" alt=""
class="img-fluid imgg rounded-circle img-thumbnail shadow-sm">
<h5 class="fs-2">Unknown Speaker</h5><span class="small text-uppercase text-muted">ML
Gawd</span>
<ul class="social mb-0 list-inline mt-3">
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-facebook-f "></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-twitter "></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-instagram "></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i
class="fa fa-linkedin-square "></i></a></li>
</ul>
</div>
</div>
</div> -->
</div>
</div>
</div>
</div>
<!-- -------------------------SPEAKERS END---------------------------- -->
<!-- Achievements -->
<!-- <div class="ourachievements-container section-container">
<div class="container">
<div class="row">
<div class="col-sm-12 ourachievements section-description wow fadeIn">
<h2>Past Achievements <i class="fa fa-trophy" aria-hidden="true"></i></h2>
<div class="divider-1 wow fadeInUp"><span></span></div>
<p style="font-size: 25px;"> Our Past achivements were like “hello”-IEEE , Pass the Mic 2.0 , ML
Accelerator Summit 2.0 etc </p>
</div>
</div>
<br>
<div class='row'>
<div class='col-sm-4'>
<div class="card">
<img class="card-img-top" src="assets/img/img.jpg">
<div class="card-body">
<a href="https://ieee-jaduniv.in/hello-IEEE/" target="_blank">
<h3 style="font-weight: bold;" class="card-title">Hello IEEE</h3>
</a>
<h5> Date : </h5>
<p class="card-text">The crown jewel of our Student Branch for the year 2022 so far, “hello”
IEEE was a first-of-its-kind event organised by us on a massive scale.
Encompassing enthusiasm and audience from the entire Kolkata
section of IEEE, it was a day-long networking and intellectual fiesta
comprising panel discussions, guest-speaker presentations, idea
presentations, inter-collegiate quizzing events and lots more. It saw an
offline presence of over 100 and an active online participation of over
250. All in all, it was a grand success.</p>
</div>
</div>
</div>
<div class='col-sm-4'>
<div class="card">
<img class="card-img-top" src="assets/img/img.jpg">
<div class="card-body">
<a href="https://ieee-jaduniv.in/ptm/" target="_blank">
<h3 style="font-weight: bold;" class="card-title">Pic the mike</h3>
</a>
<h5>Date: </h5>
<p class="card-text">The highly anticipated Pass the Mic 2.0 was held to celebrate the
growth and development of women in engineering through the course
of years.
IEEE WIE members got the opportunity to interact with accomplished
women in the field of engineering and by bringing the podcasts to all
the students, especially the female student body, many of them were
given the confidence boost they needed.</p>
</div>
</div>
</div>
<div class='col-sm-4'>
<div class="card">
<img class="card-img-top" src="assets/img/img.jpg">
<div class="card-body">
<a href="https://ieee-jaduniv.in/mlas-2.0/" target="_blank">
<h3 style="font-weight: bold;" class="card-title">ML Accelerator Summit 2.0 </h3>
</a>
<h5> January 2017</h5>
<p class="card-text">As our first offline event in Jadavpur University campus after 2 long
years of hiatus due to the pandemic, ML Accelerator 2.0 was a grand
success. Besides that, it was also the first event by our newly elected
executive committee, which is why the successful execution of this
11
event was of prime significance to us.</p>
</div>
</div>
</div>
</div>
<br>
</div>
</div>
</div> -->
<br><br><br><br><br>
<!-- <div>
<h1>Timeline</h1>
</div>
</header>
<main id="timeline" class="container">
<div class="timeline-block">
<div class="timeline-circle"></div>
<div id="content-1" class="timeline-content">
<h2>Day 1 Event name</h2>
<p>
<strong>4:00 pm - 5: 00 pm </strong> event name </p>
<p>
<strong>4:00 pm - 5: 00 pm </strong> event name </p>
<span class="timeline-content-date"><i class="fas fa-calendar-alt"></i> 17/12/2022</span>
</div>
</div>
<div class="timeline-block">
<div class="timeline-circle"></div>
<div id="content-2" class="timeline-content">
<h2>Day 2 event name</h2>
<p>
<strong>4:00 pm - 5: 00 pm </strong> event name </p>
<p>
<strong>4:00 pm - 5: 00 pm </strong> event name </p>
<span class="timeline-content-date"><i class="fas fa-calendar-alt"></i> 18/12/2022</span>
</div>
</div>
<div class="timeline-block">
<div class="timeline-circle"></div>
<div id="content-3" class="timeline-content">
<h2>Day 3 event name</h2>
<p>
<strong>4:00 pm - 5: 00 pm </strong> event name </p>
<p>
<strong>4:00 pm - 5: 00 pm </strong> event name </p>
<span class="timeline-content-date"><i class="fas fa-calendar-alt"></i> 19/12/2022</span>
</div>
</div>
-->
<!-- ---------------------------------------EVENT TIMELINE-------------------------- -->
<div id="timeline">
<div class="reveal">
<div style="text-align: center;">
<div class="my-5 py-5"> <span class="heading_new">Event <span class="heading_new"
style="color: #2370d4;">Timeline</span></span>
</div>
</div>
<h2>A clean timeline design, with animated links</h2>
<div class="timeline">
<div class="timeline__event animated fadeInUp delay-3s timeline__event--type1">
<div class="timeline__event__icon">
<i class="fa-thin fa-moon"></i>
</div>
<div class="timeline__event__date" data-aos="fade-right">
17th December 2022
</div>
<div class="timeline__event__content " data-aos="fade-right">
<div class="timeline__event__title">
Day 1
</div>
<div class="timeline__event__description" data-aos="fade-right">
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Vel, nam! Nam eveniet ut
aliquam ab asperiores, accusamus iure veniam corporis</p>
<button type="button" class="btn btn-primary" data-toggle="modal"
data-target="#exampleModalCenter1">Learn More</button>
</div>
</div>
</div>