-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1099 lines (1030 loc) · 55.9 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 content="width=device-width, initial-scale=1.0" name="viewport">
<title>Pass The Mic</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<!--link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon-->
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center header-transparent">
<div class="container d-flex align-items-center">
<div class="logo mr-auto">
<!--h1 class="text-light"><a href="index.html"><span>Bootslander</span></a></h1-->
<!-- Uncomment below if you prefer to use an image logo -->
<a href="index.html"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="#hero">Home</a></li>
<li><a href="#about">About</a></li>
<!--li><a href="#features">Features</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#pricing">Pricing</a></li>
<li class="drop-down"><a href="">Drop Down</a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="drop-down"><a href="#">Drop Down 2</a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
<li><a href="#">Drop Down 5</a></li>
</ul>
</li-->
<li><a href="#details">Episodes</a></li>
<li><a href="#team">Speakers</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav><!-- .nav-menu -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="container">
<div class="row">
<div class="col-lg-7 pt-5 pt-lg-0 order-2 order-lg-1 d-flex align-items-center">
<div data-aos="zoom-out">
<h1>Pass The <span>Mic</span></h1>
<h2>Curious Cases Curated !</h2>
<div class="text-center text-lg-left">
<a href="#about" class="btn-get-started scrollto">Live Now!</a>
</div>
</div>
</div>
<div class="col-lg-5 order-1 order-lg-2 hero-img" data-aos="zoom-out" data-aos-delay="300">
<img src="assets/img/hero-img.png" class="img-fluid animated" alt="">
</div>
</div>
</div>
<svg class="hero-waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 24 150 28 " preserveAspectRatio="none">
<defs>
<path id="wave-path" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z">
</defs>
<g class="wave1">
<use xlink:href="#wave-path" x="50" y="3" fill="rgba(255,255,255, .1)">
</g>
<g class="wave2">
<use xlink:href="#wave-path" x="50" y="0" fill="rgba(255,255,255, .2)">
</g>
<g class="wave3">
<use xlink:href="#wave-path" x="50" y="9" fill="#fff">
</g>
</svg>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container-fluid">
<div class="row">
<div class="col-xl-5 col-lg-6 video-box d-flex justify-content-center align-items-stretch"
data-aos="fade-right">
<div class="smartphone">
<img src="assets/img/ezgif.com-resize.gif" alt=""
style=" border-width: 10px; border-color: rgb(131, 55, 55);">
<!--img src="assets/img/ezgif.com-resize.gif" alt="" style="border-radius: 20px; border-width: 10px; border-color: rgb(131, 55, 55);"-->
</div>
<!--a href="https://www.youtube.com/watch?v=jDDaplaOz7Q" class="venobox play-btn mb-4" data-vbtype="video" data-autoplay="true"></a-->
</div>
<div
class="col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5"
data-aos="fade-left">
<h3>About Event</h3>
<p>
<h4>Time to brew your coffee and revisit your Spotify while we set the stage and tune our microphones. A
specially curated series of weekly podcasts to warm up your winter weekends, keep your eyes on PASS THE
MIC.</h4>
</p>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<div class="icon"><i class="icofont-clock-time"></i></div>
<h4 class="title"><a href=""> 5-week Podcast Series</a></h4>
<p class="description">A series of five weekly podcasts to be released in the weekends starting soon.</p>
</div>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="200">
<div class="icon"><i class="icofont-headphone"></i></div>
<h4 class="title"><a href="">Going live this Fall</a></h4>
<p class="description">Handpicked and assorted topics and talks from one of the pioneers in the field,
directly on your Spotify playlists.</p>
</div>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="300">
<div class="icon"><i class="icofont-spotify"></i></div>
<h4 class="title"><a href="">Listen on Spotify</a></h4>
<p class="description">Spotify took us by the storm with #2020wrapped, and it's time we take it by the
storm.</p>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<br>
<br>
<!-- ======= Features Section ======= -->
<!--section id="features" class="features">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Features</h2>
<p>Check The Features</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="50">
<i class="ri-store-line" style="color: #ffbb2c;"></i>
<h3><a href="">Lorem Ipsum</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<i class="ri-bar-chart-box-line" style="color: #5578ff;"></i>
<h3><a href="">Dolor Sitema</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="150">
<i class="ri-calendar-todo-line" style="color: #e80368;"></i>
<h3><a href="">Sed perspiciatis</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-lg-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="200">
<i class="ri-paint-brush-line" style="color: #e361ff;"></i>
<h3><a href="">Magni Dolores</a></h3>
</div>Get Started
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="250">
<i class="ri-database-2-line" style="color: #47aeff;"></i>
<h3><a href="">Nemo Enim</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="300">
<i class="ri-gradienter-line" style="color: #ffa76e;"></i>
<h3><a href="">Eiusmod Tempor</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="350">
s aliquid consequat<i class="ri-file-list-3-line" style="color: #11dbcf;"></i>
<h3><a href="">Midela Teren</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="400">
<i class="ri-price-tag-2-line" style="color: #4233ff;"></i>
<h3><a href="">Pira Neve</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="450">
<i class="ri-anchor-line" style="color: #b2904f;"></i>
<h3><a href="">Dirada Pack</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="500">
<i class="ri-disc-line" style="color: #b20969;"></i>
<h3><a href="">Moton Ideal</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="550">
<i class="ri-base-station-line" style="color: #ff5828;"></i>
<h3><a href="">Verdo Park</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="600">
<i class="ri-fingerprint-line" style="color: #29cc61;"></i>
<h3><a href="">Flavor Nivelanda</a></h3>
</div>
</div>
</div>
</div
</!--section>-->
<!-- End Features Section -->
<!-- ======= Counts Section ======= -->
<!--section id="counts" class="counts">
<div class="container">
<div class="row" data-aos="fade-up">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="icofont-simple-smile"></i>
<span data-toggle="counter-up">232</span>
<p>Days</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="icofont-document-folder"></i>
<span data-toggle="counter-up">521</span>
<p>Hours</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="icofont-live-support"></i>
<span data-toggle="counter-up">1,463</span>
<p>Minutes</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="icofont-users-alt-5"></i>
<span data-toggle="counter-up">15</span>
<p>Seconds</p>
</div>
</div>
</div>
</div>
</!--section>-->
<!-- End Counts Section -->
<!-- ======= Details Section ======= -->
<section id="details" class="details">
<div class="container">
<div class="section-title" data-aos="fade-up">
<p style="color:#d32467;">Episodes</p>
</div>
<div class="row content">
<div class="col-md-4 " data-aos="fade-right">
<img src="assets/img/pratik.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 " data-aos="fade-up">
<h3>Decoding India's fake news factory</h3>
<p class="font-italic">
In conversation with <a href="index.html#speaker">Pratik Sinha</a>
</p>
<!--<ul>
<li><i class="icofont-check"></i> Ullamco laboris nisi ut aliquip ex ea commodo consequat.</li>
<li><i class="icofont-check"></i> Duis aute irure dolor in reprehenderit in voluptate velit.</li>
<li><i class="icofont-check"></i> Iure at voluptas aspernatur dignissimos doloribus repudiandae.</li>
<li><i class="icofont-check"></i> Est ipsa assumenda id facilis nesciunt placeat sed doloribus praesentium.</li>
</ul>-->
<div style="color: #090b11; font-size: 100%; font-family: 'Gill Sans MT',;">
Did you Know? Around 59.8% of news is spread through online platforms. But deeply interlinked with
technological developments, “disinformation” and “misinformation” have become pervasive in our news
bubbles. In most countries, people cannot distinguish between fake and real news. <br> <br>
IEEE Jadavpur University Student Branch presents you PASS THE MIC - a podcast series and we are proud to
start the journey with Pratik Sinha, Co-founder of Alt News. <br> <br>
Tune in to get some insight into his rise as the face of the fact-checking scene in India, the stressful
life of a fact-checker. Learn about some tips and tricks to navigate your way through the dark alleys of
online content so that you can come out trumps in those stubborn WhatsApp debates. <br> <br>
</div>
<div class="text-center text-lg-left">
<a href="https://open.spotify.com/episode/0DfqPKhXgSFRyBzwzVXmOr" target = "_blank"><img src="assets/img/spotify-podcast-badge-blk-grn-330x80.png" alt="" ></a>
</div>
<!--div class="icon-box" data-aos="zoom-in" data-aos-delay="300" style=" ">
<div class="icon button" style="font-size: 23px; border: #d32467 2px solid; border-radius: 10%; "><a
href="https://open.spotify.com/episode/0DfqPKhXgSFRyBzwzVXmOr?si=I8xQyKKRTP2csVG6c4-O0g">Listen on <i
class="icofont-spotify" id="about"></i> spotify</a></div>
</div-->
<!-- <div class="text-center text-lg-left">
<a href="https://open.spotify.com/show/0NLRE5Avgg50TSxZEe5qI1?si=KfgsCdWWRcypzLSY9KaYog"><img src="assets/img/spotify-podcast-badge-blk-grn-330x80.png" alt="" ></a>
</div> -->
</div>
</div>
<!--Sanket Sarkar Section Start-->
<div class="row content">
<div class="col-md-4 " data-aos="fade-right">
<img src="assets/img/sanket-poster.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 " data-aos="fade-up">
<h3>Decrypting Cyber Security</h3>
<p class="font-italic">
In conversation with <a href="index.html#speaker">Sanket Sarkar</a>
</p>
<!--<ul>
<li><i class="icofont-check"></i> Ullamco laboris nisi ut aliquip ex ea commodo consequat.</li>
<li><i class="icofont-check"></i> Duis aute irure dolor in reprehenderit in voluptate velit.</li>
<li><i class="icofont-check"></i> Iure at voluptas aspernatur dignissimos doloribus repudiandae.</li>
<li><i class="icofont-check"></i> Est ipsa assumenda id facilis nesciunt placeat sed doloribus praesentium.</li>
</ul>-->
<div style="color: #090b11; font-size: 100%; font-family: 'Gill Sans MT',;">
Though there has been a 37% increase in cyberattacks in India, 93% of the breaches could have been avoided by taking simple steps.
Isn't that a staggering number? "But how exactly?" many would ponder. <br><br>
To answer all the questions that came up in your mind right
after we brought those numbers, IEEE Jadavpur University Student Branch brings you Pass The Mic with Sanket Sarkar, Founder & CEO at Teamcognito and cybersecurity evangelist.<br><br>
Grab your coffee as we dive deep into the unknown territories of the cyber world and the steps one can take to avert cybersecurity lapses.
This is going to be quite a journey starting from handling cyber threats safely to a roadmap to cybersecurity.
IEEE JU SB presents Pass the Mic featuring Sanket Sarkar. <br> <br>
</div>
<!--div class="icon-box" data-aos="zoom-in" data-aos-delay="300" style=" ">
<div class="icon button" style="font-size: 23px; border: #d32467 2px solid; border-radius: 10%; "><a
href="https://open.spotify.com/episode/0DfqPKhXgSFRyBzwzVXmOr?si=I8xQyKKRTP2csVG6c4-O0g">Listen on <i
class="icofont-spotify" id="about"></i> spotify</a></div>
</div-->
<div class="text-center text-lg-left">
<a href="https://open.spotify.com/episode/7hN3Q8v68yUi2fEvTOCqWL" target = "_blank"><img src="assets/img/spotify-podcast-badge-blk-grn-330x80.png" alt="" ></a>
</div>
</div>
</div>
<!--Sanket Sarkar End-->
<!--Dp Duari start-->
<div class="row content">
<div class="col-md-4 " data-aos="fade-right">
<img src="assets/img/dp-poster.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 " data-aos="fade-up">
<h3>Technology in Astronomy</h3>
<p class="font-italic">
In conversation with <a href="index.html#speaker">Debiprasad Duari</a>
</p>
<!--<ul>
<li><i class="icofont-check"></i> Ullamco laboris nisi ut aliquip ex ea commodo consequat.</li>
<li><i class="icofont-check"></i> Duis aute irure dolor in reprehenderit in voluptate velit.</li>
<li><i class="icofont-check"></i> Iure at voluptas aspernatur dignissimos doloribus repudiandae.</li>
<li><i class="icofont-check"></i> Est ipsa assumenda id facilis nesciunt placeat sed doloribus praesentium.</li>
</ul>-->
<div style="color: #090b11; font-size: 100%; font-family: 'Gill Sans MT',;">
What is space? What exactly are stars? Is there any connection between the stars with the earth? And finally how was the solar system millions of year ago?
<br> <br>Do these questions pop up in your head frequently? If they do, we might have just the podcast you need.
<br><br>Who else can explain us about the astronomy and the technologies used in this field better than Dr.Debiprasad Duari? He is presently the Director of Kolkata Birla Planetarium and Honorary Faculty, Physics Department, Presidency College.
<br> <br>Sit tight as IEEE Jadavpur Universty student branch brings you Pass The Mic- a podcast series with Dr. Debiprasad Duari, explaining how a series of cosmic accidents have brought us where we are right now and the technological advancements in astronomy which has lead to the recent theoretical developments in one of the most interesting fields of science.
<br><br>
</div>
<div class="text-center text-lg-left">
<a href="https://open.spotify.com/episode/0v59OQGk19qknmXLeuAjmu?si=fikoJtdLR2yQgtEvsUwMyw" target = "_blank"><img src="assets/img/spotify-podcast-badge-blk-grn-330x80.png" alt="" ></a>
</div>
<!--div class="icon-box" data-aos="zoom-in" data-aos-delay="300" style=" ">
<div class="icon button" style="font-size: 23px; border: #d32467 2px solid; border-radius: 10%; "><a
href="https://open.spotify.com/episode/0DfqPKhXgSFRyBzwzVXmOr?si=I8xQyKKRTP2csVG6c4-O0g">Listen on <i
class="icofont-spotify" id="about"></i> spotify</a></div>
</div-->
<!-- <div class="text-center text-lg-left">
<a href="https://open.spotify.com/show/0NLRE5Avgg50TSxZEe5qI1?si=KfgsCdWWRcypzLSY9KaYog"><img src="assets/img/spotify-podcast-badge-blk-grn-330x80.png" alt="" ></a>
</div> -->
</div>
</div>
<!--Dp Duari end-->
<!--Brandon Foltz start-->
<div class="row content">
<div class="col-md-4 " data-aos="fade-right">
<img src="assets/img/brandon-poster.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 " data-aos="fade-up">
<h3>Learning by Teaching</h3>
<p class="font-italic">
In conversation with <a href="index.html#speaker">Brandon Foltz</a>
</p>
<!--<ul>
<li><i class="icofont-check"></i> Ullamco laboris nisi ut aliquip ex ea commodo consequat.</li>
<li><i class="icofont-check"></i> Duis aute irure dolor in reprehenderit in voluptate velit.</li>
<li><i class="icofont-check"></i> Iure at voluptas aspernatur dignissimos doloribus repudiandae.</li>
<li><i class="icofont-check"></i> Est ipsa assumenda id facilis nesciunt placeat sed doloribus praesentium.</li>
</ul>-->
<div style="color: #090b11; font-size: 100%; font-family: 'Gill Sans MT',;">
In a survey about practice time per week for high school athletes, 22% practice 1 hour, 40% practice 2 hours, 25% practice 3 hours, 10% practice 4 hours and 3% practice more than 4 hours.......
<br> <br>
Hold on, thats too much data.<br> <br>
Is this your reaction when you are thrown with a statistics question? Well then keep reading!
<br> <br>I mean this post coz IEEE Jadavpur University Student Branch brings you another episode of Pass The Mic-a podcast series and this time it is Brandon Foltz. Famed for his brilliant YouTube tutorials on Stats, he is currently Senior Learning Designer- Decision Sciences and Finance at Cengage Learning.
<br> <br>Jump in on our latest podcast as we discuss his journey from a learner to a teacher, his fascination with the subject along with his views on post-Covid education.
<br> <br>
</div>
<div class="text-center text-lg-left">
<a href="https://open.spotify.com/episode/58isjNNXUhCrQIpDXTMLKO?si=j4ggd9IbSlKe37VYdx-fyg" target = "_blank"><img src="assets/img/spotify-podcast-badge-blk-grn-330x80.png" alt="" ></a>
</div>
<!--div class="icon-box" data-aos="zoom-in" data-aos-delay="300" style=" ">
<div class="icon button" style="font-size: 23px; border: #d32467 2px solid; border-radius: 10%; "><a
href="https://open.spotify.com/episode/0DfqPKhXgSFRyBzwzVXmOr?si=I8xQyKKRTP2csVG6c4-O0g">Listen on <i
class="icofont-spotify" id="about"></i> spotify</a></div>
</div-->
<!-- <div class="text-center text-lg-left">
<a href="https://open.spotify.com/show/0NLRE5Avgg50TSxZEe5qI1?si=KfgsCdWWRcypzLSY9KaYog"><img src="assets/img/spotify-podcast-badge-blk-grn-330x80.png" alt="" ></a>
</div> -->
</div>
</div>
<!--Brandon Foltz end-->
</div>
</section>
<!--<div class="row content">
<div class="col-md-4 order-1 order-md-2" data-aos="fade-left">
<img src="assets/img/details-2.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 pt-5 order-2 order-md-1" data-aos="fade-up">
<h3>Corporis temporibus maiores provident</h3>
<p class="font-italic">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua.
</p>
<p>
Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum
</p>
<p>
Inventore id enim dolor dicta qui et magni molestiae. Mollitia optio officia illum ut cupiditate eos autem. Soluta dolorum repellendus repellat amet autem rerum illum in. Quibusdam occaecati est nisi esse. Saepe aut dignissimos distinctio id enim.
</p>
</div>
</div>
<div class="row content">
<div class="col-md-4" data-aos="fade-right">
<img src="assets/img/details-3.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 pt-5" data-aos="fade-up">
<h3>Sunt consequatur ad ut est nulla consectetur reiciendis animi voluptas</h3>
<p>Cupiditate placeat cupiditate placeat est ipsam culpa. Delectus quia minima quod. Sunt saepe odit aut quia voluptatem hic voluptas dolor doloremque.</p>
<ul>
<li><i class="icofont-check"></i> Ullamco laboris nisi ut aliquip ex ea commodo consequat.</li>
<li><i class="icofont-check"></i> Duis aute irure dolor in reprehenderit in voluptate velit.</li>
<li><i class="icofont-check"></i> Facilis ut et voluptatem aperiam. Autem soluta ad fugiat.</li>
</ul>
<p>
Qui consequatur temporibus. Enim et corporis sit sunt harum praesentium suscipit ut voluptatem. Et nihil magni debitis consequatur est.
</p>
<p>
Suscipit enim et. Ut optio esse quidem quam reiciendis esse odit excepturi. Vel dolores rerum soluta explicabo vel fugiat eum non.
</p>
</div>
</div>
<div class="row content">
<div class="col-md-4 order-1 order-md-2" data-aos="fade-left">
<img src="assets/img/details-4.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 pt-5 order-2 order-md-1" data-aos="fade-up">
<h3>Quas et necessitatibus eaque impedit ipsum animi consequatur incidunt in</h3>
<p class="font-italic">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua.
</p>
<p>
Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum
</p>
<ul>
<li><i class="icofont-check"></i> Et praesentium laboriosam architecto nam .</li>
<li><i class="icofont-check"></i> Eius et voluptate. Enim earum tempore aliquid. Nobis et sunt consequatur. Aut repellat in numquam velit quo dignissimos et.</li>
<li><i class="icofont-check"></i> Facilis ut et voluptatem aperiam. Autem soluta ad fugiat.</li>
</ul>
</div>
</div>
</div-->
</section>
<!-- End Details Section -->
<!-- ======= Gallery Section ======= -->
<!--section id="gallery" class="gallery">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Gallery</h2>
<p>Check our Gallery</p>
</div>
<div class="row no-gutters" data-aos="fade-left">
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="100">
<a href="assets/img/gallery/gallery-1.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img/gallery/gallery-1.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="150">
<a href="assets/img/gallery/gallery-2.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img/gallery/gallery-2.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="200">
<a href="assets/img/gallery/gallery-3.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img/gallery/gallery-3.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="250">
<a href="assets/img/gallery/gallery-4.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img/gallery/gallery-4.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="300">
<a href="assets/img/gallery/gallery-5.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img/gallery/gallery-5.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="350">
<a href="assets/img/gallery/gallery-6.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img/gallery/gallery-6.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="400">
<a href="assets/img/gallery/gallery-7.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img/gallery/gallery-7.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item" data-aos="zoom-in" data-aos-delay="450">
<a href="assets/img/gallery/gallery-8.jpg" class="venobox" data-gall="gallery-item">
<img src="assets/img/gallery/gallery-8.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
</div>
</div-->
</section><!-- End Gallery Section -->
<!-- ======= Testimonials Section ======= -->
<!--section id="testimonials" class="testimonials">
<div class="container">
<div class="owl-carousel testimonials-carousel" data-aos="zoom-in">
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt="">
<h3>Saul Goodman</h3>
<h4>Ceo & Founder</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Proin iaculis purus consequat sem cure digni ssim donec porttitora entum suscipit rhoncus. Accusantium quam, ultricies eget id, aliquam eget nibh et. Maecen aliquam, risus at semper.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt="">
<h3>Sara Wilsson</h3>
<h4>Designer</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid cillum eram malis quorum velit fore eram velit sunt aliqua noster fugiat irure amet legam anim culpa.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt="">
<h3>Jena Karlis</h3>
<h4>Store Owner</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Enim nisi quem export duis labore cillum quae magna enim sint quorum nulla quem veniam duis minim tempor labore quem eram duis noster aute amet eram fore quis sint minim.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="">
<h3>Matt Brandon</h3>
<h4>Freelancer</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Fugiat enim eram quae cillum dolore dolor amet nulla culpa multos export minim fugiat minim velit minim dolor enim duis veniam ipsum anim magna sunt elit fore quem dolore labore illum veniam.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item">
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="">
<h3>John Larson</h3>
<h4>Entrepreneur</h4>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Quis quorum aliqua sint quem legam fore sunt eram irure aliqua veniam tempor noster veniam enim culpa labore duis sunt culpa nulla illum cillum fugiat legam esse veniam culpa fore nisi cillum quid.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div
</-section>-->
<!-- End Testimonials Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team">
<div class="container">
<div class="section-title" data-aos="fade-up" id="speaker">
<p>Our Speakers</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-6">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="assets/img/team/pratik_sinha.jpeg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Pratik Sinha</h4>
<span>CEO, AltNews</span>
<div class="social">
<a href="https://twitter.com/free_thinker" target = "_blank"><i class="icofont-twitter"></i></a>
<!-- <a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a> -->
</div>
</div>
</div>
</div>
<!--Sanket Sarkar speaker start-->
<div class="col-lg-3 col-md-6">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="assets/img/team/sanket-speaker.jpeg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Sanket Sarkar</h4>
<span>Founder & CEO, Teamcognito</span>
<div class="social">
<a href="https://www.linkedin.com/in/infosecsanket/" target = "_blank"><i class="icofont-linkedin"></i></a>
<!-- <a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a> -->
</div>
</div>
</div>
</div>
<!--Sanket Sarkar speaker end-->
<!--Debiprasad Duari speaker start-->
<div class="col-lg-3 col-md-6">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="assets/img/team/dp-speaker.jpg" class="img-fluid" alt="" ></div>
<div class="member-info">
<h4>Debiprasad Duari</h4>
<span>Director, Kolkata Birla Planetarium</span>
<div class="social">
<a href="https://in.linkedin.com/in/debiprosad-duari-039597175" target = "_blank"><i class="icofont-linkedin"></i></a>
<!-- <a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a> -->
</div>
</div>
</div>
</div>
<!--Debiprasad Duari speaker end-->
<!--Brandon Foltz speaker start-->
<div class="col-lg-3 col-md-6">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="assets/img/team/brandon.jpg" class="img-fluid" alt="" ></div>
<div class="member-info">
<h4>Brandon Foltz</h4>
<span>YouTuber and Senior Lead Designer, Cengage Learning</span>
<div class="social">
<a href="https://www.linkedin.com/in/brandonfoltz/" target = "_blank"><i class="icofont-linkedin"></i></a>
<!-- <a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a> -->
</div>
</div>
</div>
</div>
<!--Brandon Foltz speaker end-->
<!-- <div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="member" data-aos="zoom-in" data-aos-delay="200">
<div class="pic"><img src="assets/img/team/team-2.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Sarah Jhonson</h4>
<span>Product Manager</span>
<div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="300">
<div class="pic"><img src="assets/img/team/team-3.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>William Anderson</h4>
<span>CTO</span>
<div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="400">
<div class="pic"><img src="assets/img/team/team-4.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Amanda Jepson</h4>
<span>Accountant</span>
<div class="social">
<a href=""><i class="icofont-twitter"></i></a>
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
<a href=""><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
</div> -->
</div>
</div-->
</section><!-- End Team Section -->
<!-- ======= Pricing Section ======= -->
<!--section id="pricing" class="pricing">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Pricing</h2>
<p>Check our Pricing</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-6">
<div class="box" data-aos="zoom-in" data-aos-delay="100">
<h3>Free</h3>
<h4><sup>$</sup>0<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li class="na">Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0">
<div class="box featured" data-aos="zoom-in" data-aos-delay="200">
<h3>Business</h3>
<h4><sup>$</sup>19<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in" data-aos-delay="300">
<h3>Developer</h3>
<h4><sup>$</sup>29<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a hreHard Workersf="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0">
<div class="box" data-aos="zoom-in" data-aos-delay="400">
<span class="advanced">Advanced</span>
<h3>Ultimate</h3>
<h4><sup>$</sup>49<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div>
</div-->
</section><!-- End Pricing Section -->
<!-- ======= F.A.Q Section ======= -->
<!--section id="faq" class="faq section-bg">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>F.A.Q</h2>
<p>Frequently Asked Questions</p>
</div>
<div class="faq-list">
<ul>
<li data-aos="fade-up">
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" class="collapse" href="#faq-list-1">Non consectetur a erat nam at lectus urna duis? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-1" class="collapse show" data-parent=".faq-list">
<p>
Feugiat pretium nibh ipsum consequat. Tempus iaculis urna id volutpat lacus laoreet non curabitur gravida. Venenatis lectus magna fringilla urna porttitor rhoncus dolor purus non.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-2" class="collapsed">Feugiat scelerisque varius morbi enim nunc? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-2" class="collapse" data-parent=".faq-list">
<p>
Dolor sit amet consectetur adipiscing elit pellentesque habitant morbi. Id interdum velit laoreet id donec ultrices. Fringilla phasellus faucibus scelerisque eleifend donec pretium. Est pellentesque elit ullamcorper dignissim. Mauris ultrices eros in cursus turpis massa tincidunt dui.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-3" class="collapsed">Dolor sit amet consectetur adipiscing elit? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-3" class="collapse" data-parent=".faq-list">
<p>
Eleifend mi in nulla posuere sollicitudin aliquam ultrices sagittis orci. Faucibus pulvinar elementum integer enim. Sem nulla pharetra diam sit amet nisl suscipit. Rutrum tellus pellentesque eu tincidunt. Lectus urna duis convallis convallis tellus. Urna molestie at elementum eu facilisis sed odio morbi quis
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-4" class="collapsed">Tempus quam pellentesque nec nam aliquam sem et tortor consequat? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-4" class="collapse" data-parent=".faq-list">
<p>
Molestie a iaculis at erat pellentesque adipiscing commodo. Dignissim suspendisse in est ante in. Nunc vel risus commodo viverra maecenas accumsan. Sit amet nisl suscipit adipiscing bibendum est. Purus gravida quis blandit turpis cursus in.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-5" class="collapsed">Tortor vitae purus faucibus ornare. Varius vel pharetra vel turpis nunc eget lorem dolor? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-5" class="collapse" data-parent=".faq-list">
<p>
Laoreet sitThe Jadavpur University IEEE student branch, founded in 2010, belongs to the Kolkata section of Region 10 of the organization. We are a group of enthusiastic students who are promoting innovative ideas both within and outside the campus. . amet cursus sit amet dictum sit amet justo. Mauris vitae ultricies leo integer malesuada nunc vel. Tincidunt eget nullam non nisi est sit amet. Turpis nunc eget lorem dolor sed. Ut venenatis tellus in metus vulputate eu scelerisque.
</p>
</div>
</li>
</ul>
</div>
</div>
</section-->
<!-- End F.A.Q Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Contact</h2>
<p>Contact Us</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right" data-aos-delay="100">
<div class="info">
<div class="address">
<i class="icofont-google-map"></i>
<h4>Location:</h4>
<p>Jadavpur University
<br>188, Raja S.C. Mallick Rd, Jadavpur
<br>Kolkata-700032</p>
</div>
<div class="email">
<i class="icofont-envelope"></i>
<h4>Email:</h4>
<p>jaduniv.ieee@gmail.com</p>
</div>
<div class="phone">
<i class="icofont-phone"></i>
<h4>Call:</h4>
<p>+91 8479808755</p>
</div>
</div>
</div>
<div class="col-lg-8 mt-5 mt-lg-0" data-aos="fade-left" data-aos-delay="200">
<form
action="https://docs.google.com/forms/d/e/1FAIpQLScvXbJw5mF9cFfDYaCrh1hn97GhXEDxWqEDVbUpWXTCSfKG1g/formResponse"
method="post" role="form" class="php-email-form">
<div class="form-row">
<div class="col form-group">
<input type="text" name="entry.1235303359" class="form-control" id="name" placeholder="Your Name"
data-rule="minlen:4" data-msg="Please enter at least 4 chars" />
<div class="validate"></div>
</div>
<div class="col form-group">
<input type="email" class="form-control" name="entry.1649427996" id="email" placeholder="Your Email"
data-rule="email" data-msg="Please enter a valid email" />
<div class="validate"></div>
</div>
</div>
<div class="form-group">
<input type="text" class="form-control" name="entry.328392983" id="subject" placeholder="Subject"
data-rule="minlen:4" data-msg="Please enter at least 8 chars of subject" />
<div class="validate"></div>
</div>
<div class="form-group">
<textarea class="form-control" name="entry.1000866091" rows="6" data-rule="required"
data-msg="Please write something for us" placeholder="Message"></textarea>
<div class="validate"></div>
</div>
<div class="mb-3">
<div class="loading">Loading</div>
<!--div class="error-message"></div-->
<div class="sent-message">Your message has been sent. Thank you!</div>
</div>
<div class="text-center"><button class="msg" onclick="window.location.href = 'thanks.html';"
type="submit">Send Message</button></div>
</form>
</div>
</div>
</div>
</section-->
<!-- End Contact Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<img src="assets/img/logo_foot.png" alt="" style="width: 230px;height: 40px; margin-bottom: 10px;">
<br>
<div class="footer-info">
<br>
<!--h3>Bootslander</h3-->