-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1656 lines (1590 loc) · 117 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 name="theme-color" content="#0A192F" />
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="GDSC Anjuman-I-Islam's Kalsekar Technical Campus" />
<meta name="description" content="Google Developer Student Clubs (GDSC) is a Google Developers program for university students to learn mobile and web development skills.">
<meta name="keywords" content="gdsc, Anjuman-I-Islam's Kalsekar Technical Campus,google developers, computer science" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css"/>
<link rel="stylesheet" href="index.css">
<link rel="icon" href="img/dsc_logo.png" />
<script src="index.js"></script>
<title>GDSC AIKTC</title>
</head>
<body>
<!-- Navbar -->
<div class="row">
<nav class='mainNav'>
<ul class='mainNav-nav'>
<li class="logo">
<a href="#" class="nav-link">
<span class="link-text logo-text">GDSC AIKTC</span>
<svg width="558" height="558" viewBox="0 0 558 558" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="558" height="558" fill="url(#pattern0)"/>
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0" transform="scale(0.00347222)"/>
</pattern>
<image id="image0" width="288" height="288" xlink:href="data:image/png;base64,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"/>
</defs>
</svg>
</a>
</li>
<li class="mainNav-item">
<a href="#home" class="nav-link">
<i class="fas fa-list"></i>
<span class="link-text">Overview</span>
</a>
</li>
<li class="mainNav-item">
<a href="#technologies" class="nav-link">
<i class="fas fa-microchip"></i>
<span class="link-text">Technologies</span>
</a>
</li>
<li class="mainNav-item">
<a href="https://gdscaikc-30-days-of-cloud.herokuapp.com/" target="_blank" class="nav-link">
<i class="fas fa-clipboard-list"></i>
<span class="link-text">Leaderboard(30 Days Cloud Program)</span>
</a>
</li>
<li class="mainNav-item">
<a href="https://android-study-jams-leaderboard.herokuapp.com/" target="_blank" class="nav-link">
<i class="fas fa-clipboard-list"></i>
<span class="link-text">Leaderboard(Android Study Jams)</span>
</a>
</li>
<li class="mainNav-item">
<a href="#portfolio" class="nav-link">
<i class="fas fa-users"></i>
<span class="link-text">Team</span>
</a>
</li>
<li class="mainNav-item">
<a href="#events" class="nav-link">
<i class="fas fa-calendar-check"></i>
<span class="link-text">Events</span>
</a>
</li>
<li class="mainNav-item">
<a href="#sponsers" class="nav-link">
<i class="fas fa-handshake"></i>
<span class="link-text">Sponsers</span>
</a>
</li>
<li class="mainNav-item">
<a href="#showcase" class="nav-link">
<i class="fas fa-trophy"></i>
<span class="link-text">Showcase</span>
</a>
</li>
</ul>
</nav>
</div>
<!-- Main Container -->
<div class="mainContainer">
<section class="mainsection" id="home">
<div>
</div>
<img src="img/assets/bg.gif" class="bg">
<div class="content" id="home" data-aos="fade-up">
<h2><span class="gd">Google Developer Student Clubs </span><br></br>Anjuman-I-Islam's Kalsekar Technical Campus.
</h2>
<h4>Google Developer Student Clubs is a Google Developers program for university students to learn mobile and web development skills , design thinking skills and leadership skills.</h4>
<div>
<a href="https://dsc.community.dev/anjuman-i-islams-kalsekar-technical-campus/" rel="noopener" target="_blank" class="button">Become Member</a>
</div>
</div>
</section>
<div class="container">
<div class="row">
<div class="col-md-4 col-12">
<div class="card dark_card">
<i class="fas fa-rocket ghost-blue"></i>
<h4 class="feature-title">Concept of GDSC</h4>
<p>The GDSC program is a grassroots channel through which Google provides development
skills,
mobile and web development skills for students, towards employability.
</p>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card dark_card">
<i class="fas fa-lightbulb ghost-green"></i>
<h4 class="feature-title">Why GDSC?</h4>
<p>For students to learn development skills, solve problems through technology
and inspire them to be world class developers and changemakers.
</p>
</div>
</div>
<div class="col-md-4 col-12">
<div class="card dark_card">
<i class="fas fa-users ghost-red"></i>
<h4 class="feature-title">Target audience</h4>
<p>GDSC activities are targeted at University students and any others
including faculty members who want to learn development skills & work to solve
real-life
problems.</p>
</div>
</div>
</div>
</div>
</section>
<section id="opportunities" class="section-spacer section-opp">
<div class="container">
<div class="fk">
<header class="section-header text-center">
<h2>Opportunities GDSCs provide students with</h2>
</header>
<div class="row">
<div class="col-sm-6">
<div class="card-body wow fadeInUp">
<ul>
<li>Grow their knowledge on developer technologies and more through peer to peer
workshops
and
events.
</li>
</ul>
</div>
</div>
<div class="col-sm-6">
<div class="card-body wow fadeInUp">
<ul>
<li>Gain relevant industry experience by solving problems for local organizations with
technology based solutions.
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="card-body wow fadeInUp">
<ul>
<li>Showcase their prototypes and solutions to their local community and industry
leaders.
</li>
</ul>
</div>
</div>
<div class="col-sm-6">
<div class="card-body wow fadeInUp">
<ul>
<li>Getting inspiration to become world-class developers and changemakers from
sharing others' success stories.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ======= Technologies Section ======= -->
<section id="technologies" class="section-spacer">
<div class="container">
<header class="section-header text-center">
<h2 class="section-title wow fadeInUp">Technologies we're excited about</h2>
<p class="section-subtitle">Opportunities to learn & access deep technical content.</p>
<br>
</header>
<div class="row align-items-center">
<div class="col-sm-6">
<div class="feature-list-image">
<img src="img/assets/technologies/android.png" class="img-fluid" alt="Official android logo"
width="300" height="50%">
</div>
</div>
<div class="col-sm-6 ml-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Android Development</h2>
<p>Every year Google developers release exciting new updates to the world's most popular
operating system.
We always have sessions to keep you updated and mastering the latest trends in modern
Android development.</p>
</div>
<a href="https://codelabs.developers.google.com/?cat=Android" class="hero-button" target="_blank"
rel="noreferrer">Codelabs <i class="fas fa-external-link-alt"></i></a>
</div>
</div>
</div>
</div>
</section>
<section class="section-spacer">
<div class="container">
<div class="row flex-column-reverse flex-sm-row align-items-cengit ter">
<div class="col-sm-6 mr-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Web Development</h2>
<p>Learn the core foundations of a delightful web experience both for the user and
developer.
Stay up to tabs
with emerging and trending technologies. Get access to a guided, tutorial and hands-on
coding experience.
</p>
</div>
<a href="https://codelabs.developers.google.com/?cat=Web" class="hero-button" target="_blank"
rel="noreferrer">Codelabs <i class="fas fa-external-link-alt"></i></a>
</div>
</div>
<div class="col-sm-6">
<div class="feature-list-image">
<img src="img/assets/technologies/web.png" alt="Developer building a progressive web app"
class="img-fluid" height="60%" width="90%">
</div>
</div>
</div>
</div>
</section>
<section id="hip" class="section-spacer">
<div class="container">
<div class="row align-items-center">
<div class="col-sm-6">
<div class="feature-list-image">
<img src="img/assets/technologies/cloud.png" class="img-fluid" alt="Illustration of data uploading to the cloud"
width="90%">
</div>
</div>
<div class="col-sm-6 ml-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Cloud Computing</h2>
<p>For passionate developers who want to stay relevant in a cloud first world where
businesses
demand for agility and
innovation and prompt rise of cloud-native applications to
bridges gaps between data, insight, and action.</p>
</div>
<a href="https://codelabs.developers.google.com/?cat=Cloud" class="hero-button" target="_blank"
rel="noreferrer">Codelabs <i class="fas fa-external-link-alt"></i></a>
</div>
</div>
</div>
</div>
</section>
<section class="section-spacer">
<div class="container">
<div class="row flex-column-reverse flex-sm-row align-items-cengit ter">
<div class="col-sm-6 mr-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Machine Intelligence</h2>
<p>Learn how to drive user engagement and retention with intelligent apps that are able to
effectively serve users what they need without the fuss by providing these systems with
the
ability to
automatically learn and improve from experience without being explicitly programmed.
</p>
</div>
<a href="https://codelabs.developers.google.com/?cat=TensorFlow" class="hero-button" target="_blank"
rel="noreferrer">Codelabs <i class="fas fa-external-link-alt"></i></a>
</div>
</div>
<div class="col-sm-6">
<div class="feature-list-image">
<img src="img/assets/technologies/mi.png" class="img-fluid" alt="Robotic illustration of how many different things it can do"
height="60%" width="90%">
</div>
</div>
</div>
</div>
</section>
<!-- ======= Team Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container" style="padding-left: 40px;padding-right: 40px;">
<header class="section-header text-center">
<h2 class="section-title wow fadeInUp">Our Team</h2>
<p class="section-subtitle">Passionate students and faculty staff driving the success of the program.</p>
</header>
<div class="row align-items-center">
<ul class="teams" align="center" data-aos="fade-up">
<li class="tab-link current" data-tab="team-1">Core team</li>
<li class="tab-link" data-tab="team-2">Technical Team</li>
<li class="tab-link" data-tab="team-3">Web Team</li>
<li class="tab-link" data-tab="team-4">Design Team</li>
<li class="tab-link" data-tab="team-5">Content Writing Team</li>
<li class="tab-link" data-tab="team-6">Event Management Team</li>
</ul>
<div id="team-1" class="team-content current">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Indigo">
<h2>
<span>Zaki Ur Rahman Khan</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Lead
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/zaki.png">
</div>
<div class="mc-description">
I am Computer Engineering Student from in India with keen interest in building solutions with software development skills. I help convert a vision and an idea into meaningful and useful software products.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/zaki-ur-rahman-farid-khan-8740a81b1
">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/bhagwanZaki
">
<i class="fab fa-github"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://zakiportfolio.netlify.app/
">
<i class="fas fa-globe"></i>
</a>
</div>
</article>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Red">
<h2>
<span>Farhan Khan</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Web Expert
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/farhan.png">
</div>
<div class="mc-description">
I am a Full Stack Web Developer and UI UX designer. I started my journey in programming with python. And now I know many languages like C, Java, JavaScript and Framework like Django, React and Flutter.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" href="https://www.linkedin.com/in/farhan-khan-504b431a6/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/FarhanKhan1911">
<i class="fab fa-github"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://farhanportfolio.netlify.app/
">
<i class="fas fa-globe"></i>
</a>
</div>
</article>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Light-Blue">
<h2>
<span>Tauseef Shaikh</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Event Moderator
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/tauseef.png">
</div>
<div class="mc-description">
To pursue a successful career in software
development where skills in coding,
troubleshooting, and testing will be useful in
the delivery of state-of-the-art software
solutions.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/tauseef-dev/">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/tauseef-dev">
<i class="fab fa-github"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://tauseef-dev.netlify.app/
">
<i class="fas fa-globe"></i>
</a>
</div>
</article>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Teal">
<h2>
<span>Daniyal Dolare</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Design Executive
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/daniyal.png">
</div>
<div class="mc-description">
An enthusiast to learn about new
technology and programming. Always
ahead to grab new skill. Dedicated
and passionated towards projects and
other works.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/daniyal-dolare-4488a5190/">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/DaniyalDolare">
<i class="fab fa-github"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://daniyaldolare.github.io/portfolio/
">
<i class="fas fa-globe"></i>
</a>
</div>
</article>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Deep-Purple">
<h2>
<span>Saud Kadri</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Technical Manager
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/saud.png">
</div>
<div class="mc-description">
I am a 3rd Year Computer Engineering student having knowledge in multiple
Computing fields. I'm proficient in Cloud
Computing.Other areas of my interests include Machine Learning, Networking,
Information Security, and Linux.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/saudkadiri/">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/SaudKadiri">
<i class="fab fa-github"></i>
</a>
</div>
</article>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Pink">
<h2>
<span>Simran Mapari</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Content Creator
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/simran.png">
</div>
<div class="mc-description">
I am passionate about exploring new technologies,currently interested in Full Stack Web Domain and I believe learning is a never ending process.I’m a quick learner and love to share all my learning with everyone.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/simran-mapari-a65978196
">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/simran-01">
<i class="fab fa-github"></i>
</a>
</div>
</article>
</div>
</div>
</div>
</div>
<div id="team-2" class="team-content ">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Deep-Purple">
<h2>
<span>Saud Kadri</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Technical Manager
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/saud.png">
</div>
<div class="mc-description">
I am a 3rd Year Computer Engineering student having knowledge in multiple
Computing fields. I'm proficient in Cloud
Computing.Other areas of my interests include Machine Learning, Networking,
Information Security, and Linux.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/saudkadiri/">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/SaudKadiri">
<i class="fab fa-github"></i>
</a>
</div>
</article>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Light-Blue">
<h2>
<span>Aftab Harun</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Research Assistant
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/Aaftab.png">
</div>
<div class="mc-description">
I'm working as Penetration Tester & Ethical Hacker. I have been involved in manual Web Application Penetration Testing & Network Penetration Testing.
I can transition quickly into new environments, work effectively both independently and in team.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/aftab-harun-3924461a8/">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/7absec">
<i class="fab fa-github"></i>
</a>
</div>
</article>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Light-Blue">
<h2>
<span>Kalokhe Saqlain Naseem</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Strategy Assistant
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/Saqlain.png">
</div>
<div class="mc-description">
I'm second year student studying Computer engineering at Anjuman I Islam Kalsekar Technical Campus. I have a passion for technology and planning on becoming a software developer.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/saqlain-kalokhe-48449a189">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/SaqlainKalokhe">
<i class="fab fa-github"></i>
</a>
</div>
</article>
</div>
</div>
</div>
</div>
<div id="team-3" class="team-content ">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Red">
<h2>
<span>Farhan Khan</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Web Expert
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/farhan.png">
</div>
<div class="mc-description">
I am a Full Stack Web Developer and UI UX designer. I started my journey in programming with python. And now I know many languages like C, Java, JavaScript and Framework like Django, React and Flutter.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" href="https://www.linkedin.com/in/farhan-khan-504b431a6/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/FarhanKhan1911">
<i class="fab fa-github"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://farhanportfolio.netlify.app/
">
<i class="fas fa-globe"></i>
</a>
</div>
</article>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Light-Blue">
<h2>
<span>Aditi Balasaheb Patil</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Web Assistant
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/Aditi.png">
</div>
<div class="mc-description">
I am a web developer having experience of developing and deploying a few websites. I also develop Android application. I am passionate about learning new technologies.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/aditi-patil-121048179">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/Patil-Aditi-Balasaheb">
<i class="fab fa-github"></i>
</a>
</div>
</article>
</div>
</div>
</div>
</div>
<div id="team-4" class="team-content ">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Teal">
<h2>
<span>Daniyal Dolare</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Design Executive
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/daniyal.png">
</div>
<div class="mc-description">
An enthusiast to learn about new
technology and programming. Always
ahead to grab new skill. Dedicated
and passionated towards projects and
other works.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/daniyal-dolare-4488a5190/">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/DaniyalDolare">
<i class="fab fa-github"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://daniyaldolare.github.io/portfolio/
">
<i class="fas fa-globe"></i>
</a>
</div>
</article>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Light-Blue">
<h2>
<span>Khot Shehzad Shakeel</span>
<strong>
<i class="fa fa-fw fa-star"></i>
UI UX Assistant
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/Shehzad.png">
</div>
<div class="mc-description">
Basically a UI/UX designer and working as freelance and highly active in figma and adobe xd
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/shehzad-khot-17a47121a/">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/shehzad123-designer">
<i class="fab fa-github"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://dribbble.com/Designer04
">
<i class="fas fa-globe"></i>
</a>
</div>
</article>
</div>
</div>
</div>
</div>
<div id="team-5" class="team-content ">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Pink">
<h2>
<span>Simran Mapari</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Content Creator
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/simran.png">
</div>
<div class="mc-description">
I am passionate about exploring new technologies,currently interested in Full Stack Web Domain and I believe learning is a never ending process.I’m a quick learner and love to share all my learning with everyone.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/simran-mapari-a65978196
">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/simran-01">
<i class="fab fa-github"></i>
</a>
</div>
</article>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Light-Blue">
<h2>
<span>Hamza Khalid Baig</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Content Writing Assistant
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/Hamza.png">
</div>
<div class="mc-description">
Creative and people-oriented Computer Student with intermediate project management experience & Adequate knowledge of software and relevant languages.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/hamza-baig-81b3a7123/">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/Hbaig05546">
<i class="fab fa-github"></i>
</a>
</div>
</article>
</div>
</div>
</div>
</div>
<div id="team-6" class="team-content ">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 portfolio-item">
<div class="portfolio-wrap">
<article class="material-card Light-Blue">
<h2>
<span>Tauseef Shaikh</span>
<strong>
<i class="fa fa-fw fa-star"></i>
Event Moderator
</strong>
</h2>
<div class="mc-content">
<div class="img-container">
<img class="img-responsive" src="img/assets/members/tauseef.png">
</div>
<div class="mc-description">
To pursue a successful career in software
development where skills in coding,
troubleshooting, and testing will be useful in
the delivery of state-of-the-art software
solutions.
</div>
</div>
<a class="mc-btn-action">
<i class="fa fa-bars"></i>
</a>
<div class="mc-footer">
<a class="mc-btn-action" target="_blank" href="https://www.linkedin.com/in/tauseef-dev/">
<i class="fab fa-linkedin"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://github.com/tauseef-dev">
<i class="fab fa-github"></i>
</a>
<a class="mc-btn-action" target="_blank" href="https://tauseef-dev.netlify.app/
">
<i class="fas fa-globe"></i>
</a>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Team Section -->
<!-- Event Section -->
<section id="events">
<div class="container">
<header class="section-header text-center">
<h2 class="section-title wow fadeInUp">Events & Workshops</h2>
<p class="section-subtitle">Let's learn, share knowledge and connect with each other.</p>
</header>
<div class="row align-items-center">
<ul class="tabs" align="center" data-aos="fade-up">
<li class="tab-link current" data-tab="tab-1">Ongoing Events</li>
<li class="tab-link" data-tab="tab-2">Past Events</li>
</ul>
<div id="tab-1" class="tab-content current" data-aos="fade-up" data-aos-delay="200">
<div class="row justify-content-center prj" style="display: flex !important;">
<div class="col-md-4 col-12">
<div class="card event-card wow fadeInUp" style="color: #fff;">
<img alt="Event three poster" class="card-img-top" src="img/assets/events/no-event 1.jpeg">
<div class="card-body">
<h5 class="card-title">No upcoming event yet</h5>
<table>
<tr>
<td width="15%" class="text-blue"><i class="far fa-calendar-alt"></i></td>
<td>Event Day: coming soon</td>
</tr>
<tr>
<td class="text-green"><i class="far fa-clock"></i></td>
<td>--</td>
</tr>
</table>
<br>
</div>
</div>
</div>
<!-- <div class="col-md-4 col-12">
<div class="card event-card wow fadeInUp" style="color: #fff;">
<img alt="Event three poster" class="card-img-top" src="img/assets/events/flutter.jpeg">
<div class="card-body">
<h5 class="card-title">Flutter Festival</h5>
<table>
<tr>
<td width="15%" class="text-blue"><i class="far fa-calendar-alt"></i></td>
<td>Event Day: 14<sup>th</sup> February - 30<sup>th</sup> March</td>
</tr>
<!-- <tr>
<td class="text-green"><i class="far fa-clock"></i></td>
<td>--</td>
</tr> -->
<!-- </table>
<div class="col-md-6 col-6 mt-3">
<a href="https://www.youtube.com/playlist?list=PLOl8TbOSTlwBQqqkixKG_7TLuikBn-sFt" class="btn btn-danger" target="_blank">EVENT
VIDEOS <i class="fas fa-video"></i></a>
<br>
</div>
<br>
</div>
</div>
</div> -->
<!-- <div class="col-md-4 col-12">
<div class="card event-card wow fadeInUp" style="color: #fff;">
<img alt="Event three poster" class="card-img-top" src="img/assets/events/reactjs.jpeg">
<div class="card-body">
<p class="level beginner float-right">Beginner</p>
<h5 class="card-title">React.js Workshop For Beginners</h5>