-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
797 lines (623 loc) · 32.3 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
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-168148740-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-168944801-1');
</script>
<!--Google Analytics close-->
<!-- Required meta tags -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="IEEE APSIT Student Branch, Thane was formed with an intent to incite research,
networking and real world knowledge among students.">
<meta name="keywords" content="IEEE, IEEE APSIT, Student Branch, SB, APSIT, A.P Shah Institute of Technology,
IEEE Events, Join APSIT Chapter">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>IEEE APSIT Student Branch</title>
<link rel="icon" type="image/png" href="assets/img/IEEE_Favicon1.png">
<link rel="stylesheet" href="assets/css/selfmade.css">
<link rel="stylesheet" href="assets/css/selfresponsive.css">
<!-- Bootstrap Min CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Animate CSS -->
<link rel="stylesheet" href="assets/css/animate.css">
<!-- Meanmenu Min CSS -->
<link rel="stylesheet" href="assets/css/meanmenu.css">
<!-- Magnific Popup Min CSS -->
<link rel="stylesheet" href="assets/css/magnific-popup.min.css">
<!-- Owl Carousel Min CSS -->
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<!-- Flaticon CSS -->
<link rel="stylesheet" href="assets/css/flaticon.css">
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="assets/css/all.min.css">
<!-- Odometer CSS -->
<link rel="stylesheet" href="assets/css/odometer.css">
<!-- Slick CSS -->
<link rel="stylesheet" href="assets/css/slick.css">
<!-- Style CSS -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Crosscover Carousel CSS -->
<link rel="stylesheet" href="assets/css/crosscover.min.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="assets/css/responsive.css">
<!-- Font Awesome icons (free version)-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/js/all.min.js" crossorigin="anonymous"></script>
</head>
<body>
<header id="header">
<div class="startp-mobile-nav">
<div class="logo">
<a href="#"><img src="assets/img/ieee.png" alt="logo" style="width:250px; height:auto;"></a>
</div>
</div>
<!--Navbar-->
<div class="startp-nav">
<div class="container">
<nav class="navbar navbar-expand-md navbar-light">
<a class="navbar-brand" href="index.html"><img src="assets/img/ieee.png" alt="logo" style="width:300px; height:auto;"></a>
<div class="collapse navbar-collapse mean-menu" id="navbarSupportedContent">
<ul class="navbar-nav nav ml-auto">
<li class="nav-item"><a data-scroll href="index.html" class="nav-link">Home</a></li>
<li class="nav-item"><a data-scroll href="#events" href="about.html" class="nav-link">Events</a></li>
<li class="nav-item"><a data-scroll href="#ieee" href="about.html" class="nav-link">IEEE</a></li>
<li class="nav-item"><a data-scroll href="#about" href="about.html" class="nav-link">About us</a></li>
<li class="nav-item"><a data-scroll href="#newsletter" href="about.html" class="nav-link">Newsletter</a></li>
<li class="nav-item"><a data-scroll href="#membership" href="about.html" class="nav-link">Membership</a></li>
</ul>
</div>
<a data-scroll href="#contact" class="btn btn-primary">Contact</a>
</nav>
</div>
</div>
</header>
<div class="bnn-carousel crosscover">
<div class="crosscover-list">
<!-- <div class="crosscover-item">
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="col-12 col-sm-6">
<h2>TECHNO QUEST</h2>
<p style="text-align: justify;">Come, Watson, come! The game is afoot."
IEEE APSIT WIE AG brings you a one-of-its-kind digital treasure hunt, Techno Quest,
an exciting competition open for all to test their cognitive skills.
The participants will endure in a fun game of searching for clues digitally.
The competitors will have to take a small quiz initially and the top 30 % contestants
will be able to take part in the prestigious Techno Quest!
<br>
Prizes: <br>
<strong>1st place: Amazon vouchers worth ₹1000</strong> <br>
<strong>2nd place: Amazon vouchers worth ₹800</strong>
<br>Bring your A-game on <strong>5th and 6th September</strong><br></p>
<div class="mt-4">
<a data-scroll href="http://bit.ly/TechnoQuest" class="btn btn-primary" target="_blank">Register Now</a>
</div>
</div>
<div class="col-12 col-sm-6 text-right d-none d-sm-block">
<a href="http://bit.ly/TechnoQuest" target="_blank"><img src="assets/WIE/tech.jpg" alt="Cloud" class="img-fluid" style="width: 70%; height: auto; box-shadow: 10px 10px grey;"></a>
</div>
</div>
</div>
</div> -->
<!-- LATEST EVENT -->
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="col-12 col-sm-6">
<h2>APSCRIPT</h2>
<p style="text-align: justify;">IEEE Apsit SB is hosting ApScript Hackathon on 6th & 7th February 2020,
a programming endeavor, drawing crowds from all over the country giving an opportunity
to bright minds of our nation toprove their potential and win exciting prizes.
IEEE APSIT Student Branch comes under IEEE Bombay Section and is recognized to be one the most
proactive student branch and has been acclaimed as the upcoming branch with the most potential. Our
aim is to help students achieve a successful career by providing the best opportunities and making
them eligible for current world technology.
Founded in 1963, IEEE is the largest technical professional organization in the world with more than
423,000 members from over 160 countries! IEEE is at the forefront of undertaking numerous
initiatives worldwide. IEEE is the trusted voice for engineering, computing, and information
technology around the globe. It aims to promote science and development in Electrical, Electronics,
Computer Science, and related disciplines.</p>
<div class="mt-4">
<a data-scroll href="https://ieee.eventsapsit.org/Apscript/index.html" class="btn btn-primary mr-5" target="_blank">Know more</a>
</div>
</div>
<div class="col-12 col-sm-6 text-right d-none d-sm-block">
<img src="assets/img/apscript-hackathon.jpeg" alt="Cloud" class="img-fluid" style="width: 70%; height: auto; box-shadow: 10px 10px grey;"></a>
</div>
</div>
</div>
<!-- SECTION CLOSE -->
</div>
</div>
<section id="events" class="services-area-two ptb-80 bg-f9f6f6">
<div class="container">
<div class="section-title">
<h2>Events</h2>
<div class="bar"></div>
<p>IEEE APSIT hosts an array of technical events around the year - hackathons, workshops, expert talks, community events
and a whole lot more. Our events are highly inclusive with an active emphasis on learning and growth.</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="single-services-box" style="height: 500px;">
<h3>Coder's Week</h3>
<p>
The ongoing situation as a result of Covid-19 and the subsequent lockdown has put us all in a difficult spot.
The times are uncertain and everyone is fighting their own battles. However, this is also an excellent opportunity
to expand your horizons and add new skills to your repertoire. With this aim, <strong>IEEE APSIT SB Computer Society</strong>
brings you The Coders Week, a programming endeavour, starting from <strong>1st June 2020.</strong>
</p>
</div>
</div>
<!--<div class="col-lg-4 col-md-6">
<div class="single-services-box" style="height: 500px;">
<h3>Awakening to New Reality</h3>
<p>
With the ongoing Covid-19 pandemic, most of us are stressed and anxious. Being at home all day gives rise to boredom and negative thoughts.
IEEE APSIT SB have organised a live session, <strong>Awakening into New Reality</strong>, with teachers from
Art Of Living organization, Mr Rahul Kolangde and Mr Arpit Kothari. Join us in this amazing webinar, held on
<strong>11th May,</strong> where we will discuss various ways to focus on our mental, physical and spiritual health.
</p>
</div>
</div>-->
<div class="col-lg-4 col-md-6">
<div class="single-services-box" style="height: 500px;">
<h3>Talkdown in the Lockdown</h3>
<p>
IEEE APSIT introduced a five days webinar series, Talkdown in the Lockdown, during the country-wide lockdown period.
Speakers who joined us for the sessions were Raj Pritam Bhattacharya, Faiz Malkhani, Nakul Agrawal, Nikhil Karande
and Chirag Nayyar. Topics of the sessions included cloud computing, careers in Blockchain, design thinking and others.
Among these technical subjects, Nakul Agrawal guided our participants regarding how to manage anxiety and
how to over come stress and boredom specially during the lockdown period.
</p>
</div>
</div>
<!--<div class="col-lg-4 col-md-6">
<div class="single-services-box" style="height: 500px;">
<h3>W3 - Women With Wings</h3>
<p>
W3 - Women With Wings is a first-of-its-kind event hosted by WIE (Women In Engineering) under IEEE APSIT Student Branch
to celebrate Womens Day. The sessions were conducted by Megha Ben, two time recipient of IEEE Richard E Merwin Scholarship,
Vice Chair of MGAB for Student and Young Professional Activities of IEEE and Neha Khuperkar, Head of Finance and Taxation Ashnik India
</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single-services-box" style="height: 500px;">
<h3>What Real Engineering Is?<br>- Microsoft Student Partners</h3>
<p>
A beginner level event was organised by IEEE APSIT Student Branch in collaboration with Microsoft Student Partners
on 9th November 2019 to introduce practical aspects of engineering to first year engineering students.
The sessions were conducted by Ms. Savneet Chhatwal, Regional Student Representative- IEEE Computer Society (2019),
Chair - IEEE CS CHAPTER GHRCE (2018-19) and Mr. Ali Mustafa Shaikh, Chairperson IEEE APSIT and Microsoft Student Partner.
</p>
</div>
</div>-->
<div class="col-lg-4 col-md-6">
<div class="single-services-box" style="height: 500px;">
<h3>TensorFlow All-Around Mumbai</h3>
<p>An event on Tensorflow was organised by IEEE APSIT and Tensrflow India User Group where participants were educated about
Deep Learning, Neural Networks and the Advatages of Tensorflow 2.0 in solving modern deep learning problems. The sessions
commenced by a welcome note by Mr. Ali Mustafa followed by expert talks by Mr. Santosh Chapaneri, MS(ECE) from University of Arizona and Assistant Professor at SFIT
and Mr. Indranil Chandra, Intel Software Innovator and Machine Learning Engineer at Aditya Birla Finanace.
</p>
</div>
</div>
<!--<div class="col-lg-4 col-md-6">
<div class="single-services-box" style="height: 500px;">
<h3>Google Explore ML</h3>
<p>
IEEE APSIT Student Branch in collaboration with Google ML Academy organised Explore ML where the APSIT chapter of Google ML Academy was inaugrated.
Participants were taught about importance Machine Learning, Real world usage of ML and AI along with various career options in ML.
The sessions were conducted by Mr. Ajinkya Kolhe, Data Science and ML Instructor at Google, Dr. Satyanarayana Bheesette,
Scientific Officer (Dept. of High Energy Physics) at Tata Institute of Fundamental Research and Mr. Ali Mustafa Shaikh,
Chairperson IEEE APSIT and Google ML Academy Facilitator.
</p>
</div>
</div>-->
</div>
</div>
</section>
<section id="gallery" class="iot-features-area ptb-80">
<div class="container">
<div class="section-title" style="margin-bottom: 0px;">
<h2>Gallery</h2>
<div class="bar"></div>
</div>
<div class="igbottom">
<div class="slideshow-container">
<!--Full-width images with number and caption text-->
<div class="mySlides animated fadeIn firstImage">
<img src="assets/img/Gallery/Img1.jpg" style="width:100%">
</div>
<div class="mySlides animated fadeIn">
<img src="assets/img/Gallery/Img2.jpg" style="width:100%">
</div>
<!--<div class="mySlides animated fadeIn">
<img src="assets/img/Gallery/Img3.jpg" style="width:100%">
</div>-->
<div class="mySlides animated fadeIn">
<img src="assets/img/Gallery/Img4.jpg" style="width:100%">
</div>
<div class="mySlides animated fadeIn">
<img src="assets/img/Gallery/Img5.jpg" style="width:100%">
</div>
<!--<div class="mySlides animated fadeIn">
<img src="assets/img/Gallery/Img6.jpg" style="width:100%">
</div>-->
<!--<div class="mySlides animated fadeIn">
<img src="assets/img/Gallery/Img7.jpg" style="width:100%">
</div>-->
<!--Next and previous buttons-->
<a class="prev" onclick="plusSlides(-1)"><i class="fas fa-arrow-left"></i></a>
<a class="next" onclick="plusSlides(1)"><i class="fas fa-arrow-right"></i></a>
<br>
<!--The dots/circles-->
<div style="text-align:center">
<span class="dot active" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
<span class="dot" onclick="currentSlide(4)"></span>
<!--<span class="dot" onclick="currentSlide(5)"></span>
<span class="dot" onclick="currentSlide(6)"></span>
<span class="dot" onclick="currentSlide(7)"></span>-->
</div>
</div>
</div>
</div>
</section>
<section id="ieee" class="iot-features-area ptb-80 bg-f7fafd">
<div class="container">
<div class="section-title">
<h2>IEEE</h2>
<div class="bar"></div>
</div>
<div class="row align-items-center">
<div class="col-lg-6 iot-features-content">
<!-- <h3>About IEEE</h3> -->
<p>IEEE and its members inspire a global community to innovate for a better tomorrow through its more than 423,000 members
in over 160 countries, and its highly cited publications, conferences, technology standards, and professional and educational
activities. IEEE is the trusted "voice" for engineering, computing, and technology information around the globe.</p>
<p>IEEE membership provides you with the resources and opportunities you need to keep on top of changes in technology;
get involved in standards development; network with other professionals in your local area or within a specific technical interest;
mentor the next generation of engineers and technologists, and so much more.
<br><a href="https://www.ieee.org/" target="_blank" style="font-size:15px;">Know More!</a>
</p>
</div>
<div class="col-lg-6 iot-features-image">
<img src="assets/img/IEEE_OfficialLogo.png" class="wow fadeInUp" data-wow-delay="0.4s" alt="IEEE Official Logo" height="auto;">
</div>
</div>
</div>
</section>
<section id="about" class="iot-features-area ptb-80">
<div class="container">
<div class="section-title">
<h2>About Us</h2>
<div class="bar"></div>
</div>
<div class="row align-items-center">
<div class="col-lg-6 iot-features-content">
<p>
IEEE APSIT Student Chapter is a student body representing A.P Shah Institute of Technology on IEEE platform.
We formed this committee of IEEE members to educate and to bring awareness of the latest technology prevailing in today's world.
We strive to improve the quality of knowledge being imparted to students by organizing technical workshops and events
which are led by motivational speakers. Our aim is to help students achieve a successful career by making them eligible
for the current world of technology.
</p>
</div>
<div class="col-lg-6 iot-features-image">
<img src="assets/img/ieee.png" class="wow fadeInUp" data-wow-delay="0.4s" alt="IEEE APSIT Student Branch" >
</div>
</div>
</div>
</section>
<section id="ieee" class="iot-features-area ptb-80">
<div class="container">
<div class="section-title">
<h2>CS Society</h2>
</div>
<div class="row align-items-center">
<div class="col-lg-6 iot-features-content">
<p>IEEE Computer Society is a professional society of the IEEE. Its purpose and scope is "to advance the theory, practice,
and application of computer and information processing science and technology" and the "professional standing of its members."</p>
<div class="mt-4">
<a data-scroll href="CS/index.html" class="btn btn-primary" target="_blank">Know more</a>
</div>
</div>
<div class="col-lg-6 iot-features-image">
<img src="assets/img/IEEE-CS.png" class="wow fadeInUp" data-wow-delay="0.4s" alt="IEEE Official Logo" height="auto;">
</div>
</div>
</div>
</section>
<section id="ieee" class="iot-features-area ptb-80">
<div class="container">
<div class="section-title">
<h2>WIE Affinity Group</h2>
</div>
<div class="row align-items-center">
<div class="col-lg-6 iot-features-content">
<p>IEEE WIE is one of the world's leaders in changing the face of engineering. Our global network connects nearly 20,000 members
in over 100 countries to advance women in technology at all points in their life and career. IEEE WIE members make lifelong
friendships, acquire influential mentors, and make a difference for the benefit of humanity.</p>
<div class="mt-4">
<a data-scroll href="WIE/index.html" class="btn btn-primary" target="_blank">Know more</a>
</div>
</div>
<div class="col-lg-6 iot-features-image">
<img src="assets/img/IEEE-WIE.png" class="wow fadeInUp" data-wow-delay="0.4s" alt="IEEE Official Logo" height="250px;">
</div>
</div>
</div>
</section>
<section id="ieee" class="iot-features-area ptb-80">
<div class="container">
<div class="section-title">
<h2>Power and Energy Society</h2>
</div>
<div class="row align-items-center">
<div class="col-lg-6 iot-features-content">
<p>IEEE PES of APSIT aims to provide scientific and engineering information on electric power and energy for the betterment of
society and for for developing standards that guide the development and construction of equipment and systems, and for educating
members of the society and the general public.</p>
<div class="mt-4">
<a data-scroll href="PES/index.html" class="btn btn-primary" target="_blank">Know more</a>
</div>
</div>
<div class="col-lg-6 iot-features-image">
<img src="assets/img/IEEE-PES.png" class="wow fadeInUp" data-wow-delay="0.4s" alt="IEEE Official Logo" height="250px;">
</div>
</div>
</div>
</section>
<!--NewsLetter section starts-->
<section id="newsletter" class="iot-features-area ptb-80 bg-f9f6f6" style="padding: 5% 15% 3% 15%;">
<div class="container">
<div class="section-title">
<h2>Newsletter</h2>
<div class="bar"></div>
</div>
<div class="row align-items-center">
<p style="text-align: justify;">
<strong>IEEE APSIT SB</strong> started its flagship monthly newsletter, not only to publicize our events, but also to
recognise the incredible talent among our members and the heroic deeds of ordinary citizens in our city. With our curated articles,
we aim to ignite discussions on a plethora of technical as well as non-technical topics. Lastly, we hope to collaborate
with other SBs and industry professionals in the near future to make our newsletter a truly global platform.
</p>
<div class="col-lg-12 col-md-12" style="text-align:center; margin-top:25px;">
<a href = "https://bit.ly/2VNdmn1" target="_next" class="btn btn-primary" style=" margin: 25px;margin-bottom:40px">JULY 2020</a>
<a href = "https://bit.ly/31VKZ8o" target="_next" class="btn btn-primary" style=" margin: 25px;margin-bottom:40px">AUGUST 2020</a>
<!-- <a href = "assets/Techno%20Quest/Clue_6.pdf" target="_next" class="btn btn-primary" style=" margin: 25px;margin-bottom:40px">CLUE 6</a> -->
</div>
</div>
</div>
</section>
<!--Newsletter section closes-->
<!--Membership section-->
<section id="membership" class="iot-features-area ptb-80 bg-f7fafd"> <!--f7fafd-->
<div class="container">
<div class="section-title">
<h2>Membership</h2>
<div class="bar"></div>
</div>
<div class="row align-items-center">
<div class="col-lg-6 iot-features-image">
<img src="assets/img/Membership_Benefits.png" class="wow fadeInUp" data-wow-delay="0.4s" alt="image">
</div>
<div class="col-lg-6 iot-features-content">
<p>
IEEE membership offers access to technical innovation, cutting-edge information, networking opportunities,
and exclusive member benefits. Members support IEEE's mission to advance technology for humanity and the profession,
while memberships build a platform to introduce careers in technology to students around the world.
</p>
<p>
<b style="font-size:20px;">Member Benefits</b><br>
As an IEEE member, you'll be presented with new resources, valuable opportunities, and many discounts that will help you
advance your career in the right direction. You can find colleagues who share your vision and commitment,
those who are moving technology forward today.
</p>
<p>
<b style="font-size:20px;">Join IEEE or renew your membership</b><br>
Reach your full potential as part of the world's largest technology community. Join professionals, experts,
and advisors who can help shape your career, offer resources to acquire new skills, and advance your professional development.
</p>
<a data-scroll href="https://forms.gle/stn2LBidE6Qe8KyWA" class="btn btn-primary" target="_blank">JOIN APSIT CHAPTER</a>
</div>
</div>
</div>
</section>
<!--Membership section closes-->
<!--Executive Committee Section-->
<section id="Executive Board" class="iot-features-area ptb-80">
<div class="container">
<div class="section-title">
<h2>Executive Committee 2020-21</h2>
<div class="bar"></div>
</div>
<div class="img-hover-zoom imagenature">
<a target="_blank" href="https://www.linkedin.com/in/rakshit-shah-53124519b"><img src="assets/img/Executive Committee/RakshitShah.jpg" alt="Rakshit Shah"></a>
<div><a target="_blank" class="imageinfo" href="https://www.linkedin.com/in/rakshit-shah-53124519b"><p>Rakshit Shah</p></a></div>
<p style="font-size:17px;">Chairperson</p>
</div>
<div class="img-hover-zoom imagenature">
<a target="_blank" href="https://www.linkedin.com/in/mukul-aigalikar-14479b1aa"><img src="assets/img/Executive Committee/MukulAigalikar.jpg" alt="Mukul Aigalikar"></a>
<div><a target="_blank" class="imageinfo" href="https://www.linkedin.com/in/mukul-aigalikar-14479b1aa"><p>Mukul Aigalikar</p></a></div>
<p style="font-size:17px;">Vice Chairperson</p>
</div>
<div class="img-hover-zoom imagenature">
<a target="_blank" href="#"><img src="assets/img/Executive Committee/SanaKhan.png" alt="Sana Khan"></a>
<div><a target="_blank" class="imageinfo" href="#"><p>Sana Khan</p></a></div>
<p style="font-size:17px;">Branch Secretary</p>
</div>
<div class="img-hover-zoom imagenature">
<a target="_blank" href="https://www.linkedin.com/in/akshen-dhami-%E2%99%A0-185956182"><img src="assets/img/Executive Committee/AkshenDhami.jpg" alt="Akshen Dhami"></a>
<div><a target="_blank" class="imageinfo" href="https://www.linkedin.com/in/akshen-dhami-%E2%99%A0-185956182"><p>Akshen Dhami</p></a></div>
<p style="font-size:17px;">Treasurer</p>
</div>
<div class="img-hover-zoom imagenature">
<a target="_blank" href="https://www.linkedin.com/in/kshitiz-jain/"><img src="assets/img/Executive Committee/KshitizJain.jpg" alt="Kshitiz Jain"></a>
<div><a target="_blank" class="imageinfo" href="https://www.linkedin.com/in/kshitiz-jain/"><p>Kshitiz Jain</p></a></div>
<p style="font-size:17px;">Webmaster</p>
</div>
<!-- <div class="img-hover-zoom imagenature">
<a target="_blank" href="#"><img src="assets/img/Executive Committee/ParviAgrawal.jpg" alt="Parvi Agrawal"></a>
<div><a target="_blank" class="imageinfo" href="#"><p>Parvi Agrawal</p></a></div>
<p style="font-size:17px;">Networking Team Lead</p>
</div> -->
<div class="img-hover-zoom imagenature" >
<a target="_blank" href="https://www.linkedin.com/in/tejaswini-todkar-a120b2232"><img src="assets/img/Executive Committee/TejaswiniTodkar.jpg" alt="Tejaswini Todkar"></a>
<div><a target="_blank" class="imageinfo" href="https://www.linkedin.com/in/tejaswini-todkar-a120b2232"><p>Tejaswini Todkar</p></a></div>
<p style="font-size:17px;">Content Writing Lead</p>
</div>
<div class="img-hover-zoom imagenature">
<a target="_blank" href="https://www.linkedin.com/in/kartik-kanchan-2a0b65248"><img src="assets/img/Executive Committee/KartikKanchan.jpg" alt="Kartik Kanchan"></a>
<div><a target="_blank" class="imageinfo" href="https://www.linkedin.com/in/kartik-kanchan-2a0b65248"><p>Kartik Kanchan</p></a></div>
<p style="font-size:17px;">Design Team Lead</p>
</div>
<div class="img-hover-zoom imagenature">
<a target="_blank" href="https://www.linkedin.com/in/ayush-panigrahi-412501231"><img src="assets/img/Executive Committee/AyushPanigrahi.jpg" alt="Ayush Panigrahi"></a>
<div><a target="_blank" class="imageinfo" href="https://www.linkedin.com/in/ayush-panigrahi-412501231"><p>Ayush Panigrahi</p></a></div>
<p style="font-size:17px;">Technical Team Lead</p>
</div>
</div>
</section>
<!--Executive Committee section closed-->
<section id="contact" class="contact-area ptb-80 bg-f9f6f6">
<div class="container">
<div class="section-title">
<h2>Contact</h2>
<div class="bar"></div>
<p>Do you have some queries or suggestions, don't hesistate to share the same with us!<br>
Drop us a message, we'll get back to you.!</p>
</div>
<div class="col-lg-12 col-md-12" style="text-align:center; margin-top:25px">
<a href = "mailto: ieeeapsit@gmail.com" target="_top" class="btn btn-primary" style="margin-bottom:40px">Send Message</a>
<!-- <a href = "assets/Techno%20Quest/Clue_4.pdf" target="_next" class="btn btn-primary" style=" margin-bottom:40px">CLUE 4</a> -->
<div class="clearfix"></div>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3766.331402134628!2d72.96481011473287!3d19.26794928697808!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7bba2e15f6c7b%3A0x20e1357d640bef7e!2sA.%20P.%20Shah%20Institute%20of%20Technology!5e0!3m2!1sen!2sin!4v1575529212076!5m2!1sen!2sin"
width="100%" height="500px" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</div>
</div>
</section>
<footer class="footer-area bg-f7fafd">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6">
<div class="single-footer-widget">
<div class="logo">
<img src="assets/img/ieee.png" alt="IEEE APSIT logo" style="width:250px; height:auto;">
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-footer-widget pl-5">
<h3>IEEE APSIT</h3>
<ul class="list">
<li><a data-scroll href="#events">Events</a></li>
<li><a data-scroll href="#ieee">IEEE</a></li>
<li><a data-scroll href="#about">About Us</a></li>
<li><a data-scroll href="#membership">Memberships</a></li>
<li><a data-scroll href="#contact">Contact Us</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-footer-widget">
<h3>Contact</h3>
<ul class="footer-contact-info">
<li><i data-feather="map-pin"></i> Thane, India</li>
<li><i data-feather="mail"></i> <a href = "mailto: ieeeapsit@gmail.com" target="_top">ieeeapsit@gmail.com</a></li>
</ul>
<!--Social Media Links-->
<ul class="social-links">
<li><a href="https://www.facebook.com/IEEEAPSIT/" class="facebook" target="_blank"><i data-feather="facebook"></i></a></li>
<li><a href="https://www.instagram.com/ieeeapsit/" class="instagram" target="_blank"><i data-feather="instagram"></i></a></li>
<li><a href="https://www.linkedin.com/company/ieee-apsit/" class="facebook" target="_blank"><i data-feather="linkedin"></i></a></li>
<li><a href="https://twitter.com/ieeeapsit/" class="twitter" target="_blank"><i data-feather="twitter"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCbBPYWJQXwXmE-VmVtdPOcg" class="youtube" target="_blank"><i data-feather="youtube"></i></a></li>
</ul>
</div>
</div>
<div class="col-lg-12 col-md-12">
<div class="copyright-area">
<p>© IEEE APSIT</p>
<!-- <p>Designed by <a target = "_blank" href="https://www.linkedin.com/in/yash-sampat-9b89a7185/" style="text-decoration:none;">Yash Sampat</a> and <a target = "_blank" href="https://www.linkedin.com/in/utkarsh-naik/" style="text-decoration:none;">Utkarsh Naik</a></p> -->
</div>
</div>
</div>
</div>
<img src="assets/img/map.png" class="map" alt="map">
<div class="shape8 rotateme"><img src="assets/img/shape2.svg" alt="shape"></div>
</footer>
<div class="go-top"><i data-feather="arrow-up"></i></div>
<!--Self JS-->
<script type="text/javascript" src="assets/js/selfmade.js"></script>
<!-- Jquery Min JS -->
<script src="assets/js/jquery.min.js"></script>
<!-- Popper Min JS -->
<script src="assets/js/popper.min.js"></script>
<!-- Bootstrap Min JS -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- Meanmenu Min JS -->
<script src="assets/js/jquery.meanmenu.min.js"></script>
<!-- WOW Min JS -->
<script src="assets/js/wow.min.js"></script>
<!-- Magnific Popup Min JS -->
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<!-- Appear Min JS -->
<script src="assets/js/jquery.appear.js"></script>
<!-- Odometer Min JS -->
<script src="assets/js/odometer.min.js"></script>
<!-- Slick Min JS -->
<script src="assets/js/slick.js"></script>
<!-- Owl Carousel Min JS -->
<script src="assets/js/owl.carousel.min.js"></script>
<!-- Smooth Scroll JS -->
<script src="assets/js/smooth-scroll.polyfills.min.js"></script>
<!-- Feather Icon Min JS -->
<script src="assets/js/feather.min.js"></script>
<!-- Form Validator Min JS -->
<script src="assets/js/form-validator.min.js"></script>
<!-- Contact Form Min JS -->
<script src="assets/js/contact-form-script.js"></script>
<!-- Crosscover Carousel JS -->
<script src="assets/js/crosscover.js"></script>
<!--Main JS-->
<script src="assets/js/main.js"></script>
<!--Initialize Smooth Scroll-->
<script>
var scroll = new SmoothScroll('a[href*="#"]', {
speed: 800,
speedAsDuration: true,
header: null,
topOnEmptyHash: true,
easing: 'easeInOutCubic',
offset: 80
});
</script>
<!--Initialize Crooscover Carousel-->
<script>
$(".crosscover").crosscover({
inClass:'fadeInRight',
outClass:'fadeOutRight',
interval: 10000,
startIndex: 0,
autoPlay: true,
dotsNav: true,
controller: false,
controllerClass: 'crosscover-controller',
prevClass: 'crosscover-prev',
nextClass: 'crosscover-next',
playerClass: 'crosscover-player',
playerInnerHtml: '<span class="crosscover-icon-player"></span>',
prevInnerHtml: '<span class="crosscover-icon-prev"></span>',
nextInnerHtml: '<span class="crosscover-icon-next"></span>'
});
</script>
</body>
</html>