-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1150 lines (1078 loc) · 57.4 KB
/
index.html
File metadata and controls
1150 lines (1078 loc) · 57.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GFG — Student Chapter GGV</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/locomotive-scroll@3.5.4/dist/locomotive-scroll.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="shortcut icon" href="/assets/gfg-logo.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="mediaqueries.css">
</head>
<body>
<!-- <div id="nav">
<img src="./assets/gfg-logo.png" alt="">
<div id="nav-part2">
<h4 class="nav-text" id="home"> <a class="nav-text" style="text-decoration: none;" href="#">HOME</a>
</h4>
<h4 class="nav-text" id="event"><a class="nav-text" style="text-decoration: none;" href="#">Events</a>
</h4>
<h4 class="nav-text" id="contact"><a class="nav-text" style="text-decoration: none;" href="#">Contact</a>
</h4>
<h4 class="nav-text" id="know-more"><a class="nav-text" style="text-decoration: none;"
href="https://www.geeksforgeeks.org/geeksforgeeks-student-chapter/">Know more</a>
</h4>
</div>
<div id="nav-part3">
<div id="circle"></div>
</div>
</div>
<div id="purple">
</div> -->
<nav class="navbar">
<div class="navbar-logo">
<a href="#"><img src="./assets/gfg-logo.png" alt="Logo"></a>
</div>
<div class="navbar-links">
<li><a href="#home">HOME</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#know-more">Know More</a></li>
</div>
</nav>
<div class="main">
<div class="page1">
<h1>Geeks for Geeks</h1>
<h2>Student Chapter GGV</h2>
<video autoplay muted loop src="./assets/gfg-video.mp4"></video>
</div>
<div class="page2">
<h1 class="heading-welcome" style="margin-bottom: 1rem;">Welcome,</h1>
<div class="page2-container">
<div class="page2-left">
<h2 style="align-items: center ;">UNLEASH YOUR TRUE POTENTIAL WITH <img src="./assets/gfg-logo.png"
style="position: relative; align-items: center;" alt="">
<br>
</h2>
<span class="hype" >SHOW THE
WORLD WHO
YOU ARE!</span>
</div>
<div class="page2-right">
<p>The GFG Student Chapter GGV helps students develop their coding and technical skills through
workshops, hackathons, and peer learning. We bridge the gap between academics and industry,
preparing students for tech careers. Our focus is on problem-solving, innovation, and
leadership, fostering a collaborative environment for growth and success.
</p>
<button class="about-us" onclick="openModal()">About us</button>
</div>
</div>
<div class="modal hidden">
<button class="close-modal">×</button>
<img src="./assets/gfg-logo.png" alt="GFG Student Chapter GGV Logo" class="modal-logo"
style="height: 2vmax;">
<div class="modal-inside-container"
style="display: flex; align-items: center; justify-content: flex-start; ">
<h1>Let's know more about us (GFG Student Chapter GGV)</h1>
</div>
<p>The aim of the Geeks for Geeks (GFG) Student Chapter is to foster a community of tech enthusiasts within educational institutions, providing a platform for students to enhance their technical knowledge, coding skills, and professional development. It encourages collaboration, peer learning, and participation in various workshops, hackathons, and coding contests. The chapter aims to bridge the gap between theoretical knowledge and practical application by offering resources and mentorship opportunities, thereby preparing students for the challenges of the tech industry. Through its initiatives, the GFG Student Chapter strives to cultivate innovation, problem-solving abilities, and a passion for technology among its members.</p>
<div class="cards-container">
<div class="card" id="card1">
<h2>Card 1</h2>
<img src="./assets/gfg-student-chapter-logo.png">
<!-- <p>Content for card 1.</p> -->
</div>
<div class="card" id="card2">
<h2>Card 2</h2>
<img src="./assets/gfg-student-chapter-logo.png">
<!-- <p>Content for card 2.</p> -->
</div>
<div class="card" id="card3">
<h2>Card 3</h2>
<img src="./assets/gfg-student-chapter-logo.png">
<!-- <p>Content for card 3.</p> -->
</div>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<div class="page3">
<h1 class="what-you-will-learn">Explore Our Offerings</h1>
<div id="cards">
<div class="card">
<div class="card-content">
<div class="card-image">
<img class="workshop" src="./assets/workshop.png" alt="">
</div>
<div class="card-info-wrapper">
<div class="card-info">
<i class="fa-duotone fa-apartment"></i>
<div class="card-info-title">
<h3>Workshops</h3>
<h4>Hands-on learning to solve real-world problems.</h4>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<div class="card-image">
<img src="./assets/coding-competition.png" class="competetions" alt="">
</div>
<div class="card-info-wrapper">
<div class="card-info">
<i class="fa-duotone fa-unicorn"></i>
<div class="card-info-title">
<h3>Coding Competitions</h3>
<h4>Compete. Learn. Grow.</h4>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<div class="card-image">
<img src="./assets/mentorship.png" alt="">
</div>
<div class="card-info-wrapper">
<div class="card-info">
<div class="card-info-title">
<h3>Mentorship</h3>
<h4>Guidance from experienced coders to help you succeed.</h4>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<div class="card-image">
<img src="./assets/project.png" alt="">
</div>
<div class="card-info-wrapper">
<div class="card-info">
<i class="fa-duotone fa-person-to-portal"></i>
<div class="card-info-title">
<h3>Projects</h3>
<h4>Collaborate and build impactful projects.</h4>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<div class="card-image">
<img src="./assets/leadership.png" alt="">
</div>
<div class="card-info-wrapper">
<div class="card-info">
<i class="fa-duotone fa-person-from-portal"></i>
<div class="card-info-title">
<h3>Leadership</h3>
<h4>Take charge and make a difference in our community.</h4>
</div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<div class="card-image">
<img src="./assets/events.png" class="events" alt="">
</div>
<div class="card-info-wrapper">
<div class="card-info">
<div class="card-info-title">
<h3>Events</h3>
<h4>Join us for tech talks, hackathons, and more.</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="core-members-heading-conatainer">Meet The Core Team</div> -->
<!-- come here for page 2 of priyanshu-->
<!-- <div class="page4">
<div class="container">
<div class="card">
<div class="content">
<div class="img"><img src="./assets/anshuman.png"></div>
<div class="cardContent">
<h3>Anshuman Mishra<br><span>Chairperson</span></h3>
</div>
</div>
<ul class="sci">
<li style="--i:1">
<a href="#"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
</li>
<li style="--i:2">
<a href="#"><i class="fab fa-instagram" aria-hidden="true"></i></a>
</li>
<li style="--i:3">
<a href="#"><i class="fab fa-github" aria-hidden="true"></i></a>
</li>
</ul>
</div>
<div class="card">
<div class="content">
<div class="img"><img src="./assets/aditya.jpg"></div>
<div class="cardContent">
<h3>Adiya Raj<br><span>Voice Chairperson</span></h3>
</div>
</div>
<ul class="sci">
<li style="--i:1">
<a href="#"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
</li>
<li style="--i:2">
<a href="#"><i class="fab fa-instagram" aria-hidden="true"></i></a>
</li>
<li style="--i:3">
<a href="#"><i class="fab fa-github" aria-hidden="true"></i></a>
</li>
</ul>
</div>
<div class="card">
<div class="content">
<div class="img"><img src="./assets/piyush.png"></div>
<div class="cardContent">
<h3>Piyush Keshari<br><span>Event Head</span></h3>
</div>
</div>
<ul class="sci">
<li style="--i:1">
<a href="#"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
</li>
<li style="--i:2">
<a href="#"><i class="fab fa-instagram" aria-hidden="true"></i></a>
</li>
<li style="--i:3">
<a href="#"><i class="fab fa-github" aria-hidden="true"></i></a>
</li>
</ul>
</div>
<div class="card">
<div class="content">
<div class="img"><img src="./assets/me.jpg"></div>
<div class="cardContent">
<h3>Anuj Vishwakarma<br><span>Technical Head</span></h3>
</div>
</div>
<ul class="sci">
<li style="--i:1">
<a href="#"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
</li>
<li style="--i:2">
<a href="#"><i class="fab fa-instagram" aria-hidden="true"></i></a>
</li>
<li style="--i:3">
<a href="#"><i class="fab fa-github" aria-hidden="true"></i></a>
</li>
</ul>
</div>
</div>
<div class="container" id="container2">
<div class="card">
<div class="content">
<div class="img"><img src="./assets/sakshi.png"></div>
<div class="cardContent">
<h3>Sakshi Agrawal<br><span>Content Head</span></h3>
</div>
</div>
<ul class="sci">
<li style="--i:1">
<a href="#"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
</li>
<li style="--i:2">
<a href="#"><i class="fab fa-instagram" aria-hidden="true"></i></a>
</li>
<li style="--i:3">
<a href="#"><i class="fab fa-github" aria-hidden="true"></i></a>
</li>
</ul>
</div>
<div class="card">
<div class="content">
<div class="img"><img src="./assets/sameer.png"></div>
<div class="cardContent">
<h3>Sameer<br><span>GD/Branding Head</span></h3>
</div>
</div>
<ul class="sci">
<li style="--i:1">
<a href="#"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
</li>
<li style="--i:2">
<a href="#"><i class="fab fa-instagram" aria-hidden="true"></i></a>
</li>
<li style="--i:3">
<a href="#"><i class="fab fa-github" aria-hidden="true"></i></a>
</li>
</ul>
</div>
<div class="card">
<div class="content">
<div class="img"><img src="./assets/kishan.png"></div>
<div class="cardContent">
<h3>Kishan Sahu<br><span>Social Media Head</span></h3>
</div>
</div>
<ul class="sci">
<li style="--i:1">
<a href="#"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
</li>
<li style="--i:2">
<a href="#"><i class="fab fa-instagram" aria-hidden="true"></i></a>
</li>
<li style="--i:3">
<a href="#"><i class="fab fa-github" aria-hidden="true"></i></a>
</li>
</ul>
</div>
<div class="card">
<div class="content">
<div class="img"><img src="./assets/chirag.png"></div>
<div class="cardContent">
<h3>Chirag Shinde<br><span>Marketing & PR Head</span></h3>
</div>
</div>
<ul class="sci">
<li style="--i:1">
<a href="#"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
</li>
<li style="--i:2">
<a href="#"><i class="fab fa-instagram" aria-hidden="true"></i></a>
</li>
<li style="--i:3">
<a href="#"><i class="fab fa-github" aria-hidden="true"></i></a>
</li>
</ul>
</div>
</div>
</div> -->
<div id="page2">
<h2 style="color: #4caf50; font-weight: 400; font-size: 2.3rem;">OUR CORE TEAM</h2>
<br>
<div id="cards">
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/anshuman.png" alt="">
<div id="text">
<span class="name">Anshuman Mishra </span>
<br>
<span class="work">Chairperson </span>
</div>
<div id="socials">
<a href="https://www.linkedin.com/in/anshuman-mishra-03329925a/"><i class="fa-brands fa-linkedin-in"></i></a>
<i class="fa-brands fa-github"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/aditya.jpg" alt="">
<div id="text">
<span class="name">Aditya Raj</span>
<br>
<span class="work">Vice Chairperson</span>
</div>
<div id="socials">
<a href="https://www.linkedin.com/in/adityaagupta01/
"><i class="fa-brands fa-linkedin-in"></i></a>
<i class="fa-brands fa-github"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/piyush.png" alt="">
<div id="text">
<span class="name">Piyush Keshri</span>
<br>
<span class="work">Event Head </span>
</div>
<div id="socials">
<i class="fa-brands fa-linkedin-in"></i>
<i class="fa-brands fa-github"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/anuj.jpg" alt="">
<div id="text">
<span class="name">Anuj Vishwakarma </span>
<br>
<span class="work">Technical Head</span>
</div>
<div id="socials">
<a href="https://www.linkedin.com/in/anuj-vishwakarma1/
"><i class="fa-brands fa-linkedin-in"></i></a>
<i class="fa-brands fa-github"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/sakshi.png" alt="">
<div id="text">
<span class="name">Sakshi Agrawal</span>
<br>
<span class="work">Content Head</span>
</div>
<div id="socials">
<a href="https://www.linkedin.com/in/agrawalsakshi04/
"><i class="fa-brands fa-linkedin-in"></i></a>
<i class="fa-brands fa-github"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/sameer.png" alt="">
<div id="text">
<span class="name">Sameer Singh</span>
<br>
<span class="work">GD/Branding Head </span>
</div>
<div id="socials">
<a href="https://www.linkedin.com/in/sameer-singh-b45932251/
"><i class="fa-brands fa-linkedin-in" ></i></a>
<i class="fa-brands fa-github"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</div>
</div>
</div>
<!-- page 3 -->
<div id="page3">
<h2 id="heading" >OUR TECHNICAL TEAMS</h2>
<div id="page3cards">
<!-- checking modal
<button id="openModalBtn">Meet the team</button>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<div id="modal-body"></div>
</div>
</div>
-->
<!-- card -->
<div id="card" data-team="web-dev">
<div id="bg"></div>
<img src="./assets/webdev.jpg" alt="">
<div id="text">
<span class="name">Web Development</span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="web-dev-modal">Meet the team</button>
<!-- Web Development Modal -->
<div id="web-dev-modal" class="model hidden">
<button class="close-modal modal-btn">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">WEB DEVELOPMENT TEAM</h1>
</div>
<p>Our team excels in developing responsive and visually compelling websites that prioritize both functionality and user experience. We craft clean, efficient code to ensure fast loading times, smooth navigation, and cross-browser compatibility. By staying up to date with the latest technologies and design trends, we deliver projects that not only meet but exceed your expectations. </p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Abhinav Singh - LEAD</li>
<li style="color: black;">Dheeraj Patnaik - SENIOR EXECUTIVE</li>
<li style="color: black;">Deepak Kumar - SENIOR EXECUTIVE</li>
<li style="color: black;">Harsh Agarwal - EXECUTIVE</li>
<li style="color: black;">Priyanshu Gupta - EXECUTIVE</li>
<li style="color: black;">Nikita Singh - EXECUTIVE</li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<div id="card" data-team="ai-ml">
<div id="bg"></div>
<img src="./assets/ai_ml.jpg" alt="">
<div id="text">
<span class="name">AI/ML</span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="ai-ml-modal">Meet the team</button>
<!-- AI/ML Modal -->
<div id="ai-ml-modal" class="model hidden">
<button class="close-modal">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">AI/ML TEAM</h1>
</div>
<p>As a forward-thinking team,we harness the power of Artificial Intelligence(AI) and Machine Learning(ML) to develop intelligent solutions.Leveraging expertise in deep learning,natural language processing,and computer visions,our team crafts innovative AI/ML applications that transforms and shape the future.</p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Abhishek Singh - LEAD </li>
<li style="color: black;">Divyanshu Mishra - SENIOR EXECUTIVE </li>
<li style="color: black;">Sourav Kumar - SENIOR EXECUTIVE </li>
<li style="color: black;">Himanshu Agrahari - SENIOR EXECUTIVE </li>
<li style="color: black;">Vineet Kumar - EXECUTIVE </li>
<li style="color: black;">Aditya Kumar Pandey - EXECUTIVE </li>
<li style="color: black;">Gavidi Deepashikha - EXECUTIVE </li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/appdev.jpg" alt="">
<div id="text">
<span class="name">App Development </span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="app-dev-modal">Meet the team</button>
<!-- APPDEV Modal -->
<div id="app-dev-modal" class="model hidden">
<button class="close-modal modal-btn">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">APP DEVELOPMENT TEAM</h1>
</div>
<p>We,the team of app development craft innovative,user-centric mobile applications.Together,we design,develop and deploy engaging apps that combine stunning visuals,seamless functionality and intuitive interfaces.</p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Ayush Rai - LEAD</li>
<li style="color: black;">Himanshu Ranjan - SENIOR EXECUTIVE</li>
<li style="color: black;">Kanderi Alekhya - SENIOR EXECUTIVE</li>
<li style="color: black;">Osim Kumar Laha - EXECUTIVE</li>
<li style="color: black;">Saimands Roy - EXECUTIVE </li>
<li style="color: black;">Shivam Kumar - EXECUTIVE </li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/cp_dsa.jpg" alt="">
<div id="text">
<span class="name">CP DSA </span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="cp-dsa-modal">Meet the team</button>
<!-- CP/DSA Modal -->
<div id="cp-dsa-modal" class="model hidden">
<button class="close-modal">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">CP/DSA TEAM</h1>
</div>
<p>As a dynamic team of programmers,we tackle complex challenges in competitive programming, leveraging expertise in data structures and algorithms to deliver efficient solutions.</p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Ankit Sharma - LEAD </li>
<li style="color: black;">Arjun Verma - SENIOR EXECUTIVE</li>
<li style="color: black;">Deepak Ray - SENIOR EXECUTIVE</li>
<li style="color: black;">Haldhar Behera - SENIOR EXECUTIVE </li>
<li style="color: black;">Abhiraj - EXECUTIVE </li>
<li style="color: black;">Ravi Tiwari - EXECUTIVE </li>
<li style="color: black;">Nikhil Chandrakar - EXECUTIVE </li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/gamedev.jpg" alt="">
<div id="text">
<span class="name">Game Development</span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="game-dev-modal">Meet the team</button>
<!-- GAMEDEV Modal -->
<div id="game-dev-modal" class="model hidden">
<button class="close-modal modal-btn">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">GAME DEVELOPMENT TEAM</h1>
</div>
<p>We the passionate team of Game Development craft immersive game experiences that captivate and inspire us. We pour our hearts into designing, developing and deploying engaging games by pushing the boundaries of creativity and innovation. </p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Kanisk Ranjan - LEAD </li>
<li style="color: black;">Tanishq Jangir - SENIOR EXECUTIVE </li>
<li style="color: black;">Niraj Dhore - SENIOR EXECUTIVE </li>
<li style="color: black;">Akash Das Mahant - EXECUTIVE</li>
<li style="color: black;">Balakriti Kumari - EXECUTIVE </li>
<li style="color: black;">Chhayansh Sahu - EXECUTIVE </li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/iot.jpg" alt="">
<div id="text">
<span class="name">Internet of Things</span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="iot-modal">Meet the team</button>
<!-- IOT Modal -->
<div id="iot-modal" class="model hidden">
<button class="close-modal modal-btn">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">IOT TEAM</h1>
</div>
<p>We,the analytical team of IoT love to innovate and experiment with cutting-edge technologies to bridge the physical and digital worlds. We design, develop, and deploy intelligent solutions that make a tangible impact on our lives. </p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Raushan Yadav - LEAD</li>
<li style="color: black;">Kella Y. Sai Kaoushal - SENIOR EXECUTIVE</li>
<li style="color: black;">Ujjwal Kumar - SENIOR EXECUTIVE</li>
<li style="color: black;">Saniya Shristy Gupta - EXECUTIVE </li>
<li style="color: black;">Parasmani Khunte - EXECUTIVE </li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/cyber.jpg" alt="">
<div id="text">
<span class="name">Cyber Security</span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="cyber-modal">Meet the team</button>
<!-- Cyber Security Modal -->
<div id="cyber-modal" class="model hidden">
<button class="close-modal modal-btn">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">CYBER SECURITY TEAM</h1>
</div>
<p>We, the vigilant team of Cyber Security protect sensitive information and safeguard digital landscapes through cutting-edge cyber security solutions. Designing, Implementing and Monitoring robust defenses against evolving threats ensuring the integrity, confidentiality and availability of our client's data. </p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Ayush Srivastava - LEAD</li>
<li style="color: black;">Meghana Jilakara - SENIOR EXECUTIVE</li>
<li style="color: black;">Raushan Kumar - SENIOR EXECUTIVE </li>
<li style="color: black;">Bablu Kumar - EXECUTIVE </li>
<li style="color: black;">Sami Banjare - EXECUTIVE </li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
</div>
</div>
<div id="page4">
<h2 id="heading" >OUR NON-TECHNICAL TEAMS</h2>
<div id="page4cards">
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/designbranding.jpg" alt="">
<div id="text">
<span class="name">Design/Branding </span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="Design-modal">Meet the team</button>
<!-- Design Modal -->
<div id="Design-modal" class="model hidden">
<button class="close-modal modal-btn">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">DESIGN TEAM</h1>
</div>
<p>Brand design is the process of crafting a brand's visual identity by creating a unified system of design elements, including a logo, colors, typography, illustration, and photography. A brand's visual identity is the aesthetic embodiment of its positioning and personality. </p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Sameer - LEAD</li>
<li style="color: black;">Parneet Prashant - SENIOR EXECUTIVE</li>
<li style="color: black;">Rahul Yadav - SENIOR EXECUTIVE</li>
<li style="color: black;">Aditi Jaiswal - SENIOR EXECUTIVE</li>
<li style="color: black;">Divyanshu Patel - EXECUTIVE </li>
<li style="color: black;">Umesh Kumar - EXECUTIVE </li>
<li style="color: black;">Astuti Kalothia - EXECUTIVE </li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/content.jpg" alt="">
<div id="text">
<span class="name">Content </span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="Content-modal">Meet the team</button>
<!-- Content Modal -->
<div id="Content-modal" class="model hidden">
<button class="close-modal modal-btn">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">CONTENT TEAM</h1>
</div>
<p>The aim of the content team in a student club is to create and manage high-quality, engaging, and informative content that supports the club's mission of fostering learning and development in technical and non-technical areas. The team is responsible for curating articles, tutorials, and event summaries, making complex topics accessible to students of all levels. They promote club activities, help build a strong community of learners, and provide educational resources that align with the club's goals to inspire and empower its members.</p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Sakshi Agarwal - LEAD</li>
<li style="color: black;">Adita Singh - SENIOR EXECUTIVE</li>
<li style="color: black;">Jahnvi Shrivastava - SENIOR EXECUTIVE</li>
<li style="color: black;">Ahmad Raja - EXECUTIVE </li>
<li style="color: black;">Abishek Tripathi - EXECUTIVE </li>
<li style="color: black;">Soumya Shree - EXECUTIVE </li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/socialmedia.jpg" alt="">
<div id="text">
<span class="name">Social Media </span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="Social Media-modal">Meet the team</button>
<!-- Social Media Modal -->
<div id="Social Media-modal" class="model hidden">
<button class="close-modal modal-btn">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">SOCIAL MEDIA TEAM</h1>
</div>
<p>The aim of the social media team in a student club is to enhance the club's online presence by creating and sharing engaging, relevant, and consistent content across various platforms. This team is responsible for promoting events, sharing updates, and building a vibrant digital community to attract and engage members. They focus on amplifying the club’s mission, fostering interaction with the audience, and ensuring that the club’s achievements, activities, and opportunities reach a wider audience while maintaining a positive and dynamic online image. </p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Kishan Sahu - LEAD</li>
<li style="color: black;">Ankit Chaurasiya - SENIOR EXECUTIVE</li>
<li style="color: black;">Snigdha Gupta - SENIOR EXECUTIVE</li>
<li style="color: black;">Sakshi Priya - EXECUTIVE </li>
<li style="color: black;">Ashish Chandrakar - EXECUTIVE </li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/eventteam.jpg" alt="">
<div id="text">
<span class="name">Event </span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="Event-modal">Meet the team</button>
<!-- Event Modal -->
<div id="Event-modal" class="model hidden">
<button class="close-modal modal-btn">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">EVENT TEAM</h1>
</div>
<p>The aim of the events team in a student club is to plan, organize, and execute engaging events that align with the club’s mission and interests of its members. This team is responsible for coordinating all aspects of events, from ideation and logistics to promotion and execution, ensuring smooth operations and meaningful experiences for participants. They focus on creating a diverse range of activities, including workshops, hackathons, seminars, and networking opportunities, to foster learning, collaboration, and community building within the club and beyond. </p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Piyush Keshri - LEAD</li>
<li style="color: black;">Aryan Singh - SENIOR EXECUTIVE</li>
<li style="color: black;">Kanishka Patel - SENIOR EXECUTIVE</li>
<li style="color: black;">Sneha Singh - SENIOR EXECUTIVE</li>
<li style="color: black;">Rahul Mishra - EXECUTIVE </li>
<li style="color: black;">Harsh Kumar sahu - EXECUTIVE </li>
<li style="color: black;">Pankaj Kumar - EXECUTIVE </li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/marketing.jpg" alt="">
<div id="text">
<span class="name">Marketing & PR</span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="Marketing-modal">Meet the team</button>
<!-- Marketing Modal -->
<div id="Marketing-modal" class="model hidden">
<button class="close-modal modal-btn">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">MARKETING TEAM</h1>
</div>
<p>The aim of the marketing team in a student club is to effectively promote the club's initiatives, events, and activities to a wider audience, helping to grow the club's presence and engagement. This team is responsible for developing strategic marketing plans, creating promotional materials, and leveraging various channels such as social media, email campaigns, and on-campus promotions. Their focus is on attracting new members, increasing event participation, and building the club’s brand by showcasing its value and accomplishments to both the student body and external partners. </p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Chirag Shinde - LEAD</li>
<li style="color: black;">Jaahnvi Shukla - SENIOR EXECUTIVE</li>
<li style="color: black;">Aryan Patel - SENIOR EXECUTIVE</li>
<li style="color: black;">Aman Gupta - SENIOR EXECUTIVE</li>
<li style="color: black;">Shradha Agarwal - EXECUTIVE </li>
<li style="color: black;">Kiran Elakapalli - EXECUTIVE </li>
<li style="color: black;">Zafar Ali - EXECUTIVE </li>
<li style="color: black;">Manish Kumar - EXECUTIVE </li>
<li style="color: black;">Ishita Naidu - EXECUTIVE </li>
<li style="color: black;">Anant Dubey - EXECUTIVE </li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/videography.jpg" alt="">
<div id="text">
<span class="name">Photo & Video</span>
<br>
<span class="work">Team</span>
</div>
<button class="open-modal" data-modal="Videography-modal">Meet the team</button>
<!-- Videography Modal -->
<div id="Videography-modal" class="model hidden">
<button class="close-modal modal-btn">×</button>
<img src="./assets/gfg-student-chapter-logo.png" alt="GFG Student Chapter GGV Logo" class="model-logo">
<div class="model-inside-container" style="display: flex; align-items: center; justify-content: flex-start;">
<h1 style="color: green;">VIDEOGRAPHY TEAM</h1>
</div>
<p>All about capturing moments , caging time and beauty into pictures to speak and videos to sing. </p>
<br>
<h3 style="color: rgb(35, 34, 34);">Team Members</h3>
<br>
<div class="model-list">
<ul>
<li style="color: black;">Ved Singh - LEAD</li>
</ul>
</div>
</div>
<div class="overlay hidden"></div>
</div>
</div>
</div>
<div class="page5">
<div class="description">
Contact Us
</div>
<div class="cards-for-contact">
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/anshuman.png" alt="">
<div id="text">
<span class="name">Anshuman Mishra</span><br>
<span class="name">B.Tech</span><br>
<span class="name">3rd Year, Information Technology</span>
<br>
<span class="work">+91 7408047420</span>
</div>
</div>
<!-- card -->
<div id="card">
<div id="bg"></div>
<img src="./assets/ankit-sir.jpg" alt="">
<div id="text">
<span class="name">Dr. ANKIT KUMAR</span><br>
<!-- <span class="name">BTech, MTech, MPhil, PhD</span>
<br> -->
<span class="name">Assistant Professor</span><br>
<span class="name">Dept. of Information Technology</span>
<br>
<span class="work">+91 90578 36398</span>
</div>
</div>
</div>
<div class="wrapper">
<div class="inner">
<form action="">
<h3 id="registration-form">ANY QUERY? SEND HERE!</h3>