-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
1589 lines (1446 loc) · 75.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>DSC - Guru Ghasidas Vishwavidyalaya</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="DSC GGV" />
<meta name="description" content="Developer Student Clubs (DSC) is a Google Developers program for university students to learn mobile and web development skills.">
<meta name="keywords" content="dsc, Guru Ghasidas Vishwavidyalaya,google developers, Bilaspur, Chattisgarh, India, computer science" />
<meta name="theme-color" content="#0A192F" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="manifest" href="manifest.json" />
<link rel="icon" href="images/icon.png" type="image/png" />
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="dns-prefetch" href="https://docs.google.com">
<link href='https://fonts.googleapis.com/css?family=Google+Sans:400,500,700|Material+Icons' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/responsive.css">
<link href="css/animate.css" rel="stylesheet">
<link rel="stylesheet" href="fonts/icomoon/style.css" />
<link rel="stylesheet" href="css/custom-bs.css" />
<link rel="stylesheet" href="fonts/icomoon/style.css" />
<!-- preloader -->
<link rel="stylesheet" type="text/css" href="css/pace-theme.css">
<script src="js/wow.min.js"></script>
</head>
<body class="x-hidden has-sticky-header">
<nav class="navbar navbar-expand-lg fixed-top custom-menu custom-menu__light">
<div class="container">
<a class="navbar-brand" href="../dscggv.github.io/index.html">
<img data-src="images/logocp.png" height="50" alt="DSC icon">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="menu-icon__circle">
</span>
<span class="menu-icon">
<span class="menu-icon__bar"></span>
<span class="menu-icon__bar"></span>
<span class="menu-icon__bar"></span>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-lg-auto">
<li class="nav-item active">
<a class="nav-link" href="#overview">Overview
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item"><a href="#technologies" class="nav-link">Technologies</a></li>
<!-- <li class="nav-item"><a class="nav-link" href="learn\index.html">Learn</a></li> -->
<li class="nav-item"><a href="#workshops" class="nav-link">Workshops</a></li>
<li class="nav-item"><a href="hackfest.html" class="nav-link">HACKFEST-GGV</a></li>
<li class="nav-item"><a href="team.html" class="nav-link">Team</a></li>
<!-- <li class="nav-item">
<a class="nav-link" href="https://medium.com/search?q=DSCUniversityName" target="_blank" rel="noopener">Stories</a>
</li> -->
</ul>
</div>
</div>
</nav>
<header id="hero" class="hero">
<div class="container">
<div class="row align-items-center">
<div class="col-12 col-sm-6">
<div class="hero-content">
<div class="hero-title__group">
<div class="hero-title">
<h2 class="zuri">Developer Student Clubs<br> Guru Ghasidas Vishwavidyalaya.</h2>
</div>
<div class="Hero--Subtitle">
<p class="lead">Developer Student Clubs is a
<first-letter>G</first-letter><third-letter>o</third-letter><second-letter>o</second-letter><first-letter>g</first-letter><forth-letter>l</forth-letter><third-letter>e</third-letter>
Developers program for university students to learn
<second-letter> mobile</second-letter>
and
<first-letter>web development skills</first-letter>
,
<third-letter>design thinking skills</third-letter>
and
<forth-letter>leadership skills.</forth-letter>
</p>
</div>
</div>
<a class="hero-button" href="https://dsc.community.dev/guru-ghasidas-vishwavidyalaya" rel="noopener" target="_blank"><i
class="fab fa-meetup"></i> Join Us</a>
<ul class="social-list__inline mt-30">
<li>
<a href="https://www.linkedin.com/company/dscggv/" target="_blank" rel="noopener">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/dsc.ggv/" target="_blank" rel="noopener">
<i class="fab fa-instagram"></i>
</a>
</li>
<li>
<a href="https://twitter.com/dscggv" target="_blank" rel="noopener">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://github.com/DSCGGV" target="_blank" rel="noopener">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCggwIczrAF3rkHeKVgOW7ng" target="_blank" rel="noopener">
<i class="fab fa-youtube"></i>
</a>
</li>
</ul>
<div class="sponsor">
<table>
<tr>
<td colspan="3">Event partners</td>
</tr>
<tr>
<td ><img src="images/community.png" height="50">
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="col-12 col-sm-5 ml-pic">
<div class="hero-figure wow fadeInLeft">
<img data-src="images/assets/diversity.png" class="img-fluid w-100" alt="Illustration of diversity in a developer community">
</div>
</div>
</div>
</div>
</header>
<section id="overview" class="section-spacer">
<div class="container">
<div class="row">
<div class="col-md-4 col-12">
<div class="feature-card border_around wow fadeInUp">
<div class="feature-card__body">
<i><img src="images/assets/1.png"></i>
<h4 class="feature-title">Concept of DSC</h4>
<p>The DSC program is a grassroots channel through which Google provides development
skills,
mobile and web development skills for students, towards employability.
</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="feature-card border_around wow fadeInUp">
<div class="feature-card__body">
<i><img src="images/assets/2.png"></i>
<h4 class="feature-title">Why DSC?</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>
<div class="col-md-4 col-12">
<div class="feature-card m-0 border_around wow fadeInUp">
<div class="feature-card__body ">
<i><img src="images/assets/3.png"></i>
<h4 class="feature-title">Target audience</h4>
<p>DSC 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>
</div>
</section>
<section id="">
<div class="theme-section" id="theme-section">
<div class="container">
<div class="row">
<div class="col-12 mb-5 position-relative">
<h2 class="section-title text-center mb-5">
Opportunities DSCs provide students with
</h2>
</div>
<div class="col-md-6 mb-4">
<div class="service d-flex h-100">
<div class="service-number mr-4">
<div class="service-icon">
<a href="#"> <i><img src="images/assets/4.png"></i> </a> </div>
</div>
<div class="service-about">
<p>
Grow their knowledge on developer technologies and more
through peer to peer workshops and events.
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="service d-flex h-100">
<div class="service-number mr-4">
<div class="service-icon">
<a href="#"> <i><img src="images/assets/4.png"></i> </a> </div>
</div>
<div class="service-about">
<p>
Gain relevant industry experience by solving problems for
local organizations with technology based solutions.
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="service d-flex h-100">
<div class="service-number mr-4">
<div class="service-icon">
<a href="#"> <i><img src="images/assets/4.png"></i> </a> </div>
</div>
<div class="service-about">
<p>
Showcase their prototypes and solutions to their local
community and industry leaders.
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="service d-flex h-100">
<div class="service-number mr-4">
<div class="service-icon">
<a href="#"> <i><img src="images/assets/4.png"></i> </a>
</div>
</div>
<div class="service-about">
<p>
Getting inspiration to become world-class developers and
changemakers from sharing others' success stories.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</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 data-src="images/assets/technologies/android.png" class="img-fluid" alt="Official android logo"
width="300" height="50%">
</div>
</div>
<div class="col-sm-5 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-5 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 data-src="images/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 data-src="images/assets/technologies/cloud.png" class="img-fluid" alt="Illustration of data uploading to the cloud"
width="90%">
</div>
</div>
<div class="col-sm-5 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
bridge 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-5 mr-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Machine Learning & Artificial 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 data-src="images/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>
<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 data-src="images/assets/technologies/cs.png" class="img-fluid" alt="Illustration of data uploading to the cloud"
width="90%">
</div>
</div>
<div class="col-sm-5 ml-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Cyber Security</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
bridge 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-5 mr-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Competitive Programming</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 data-src="images/assets/technologies/cp.png" class="img-fluid" alt="Robotic illustration of how many different things it can do"
height="60%" width="90%">
</div>
</div>
</div>
</div>
</section>
<!-- this is a game development 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 data-src="images\assets\technologies\game.jpg" class="img-fluid" alt="Illustration of Game Development"
width="90%">
</div>
</div>
<div class="col-sm-5 ml-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Game Development</h2>
<p>An art of creating games using creative minds and skills
describes the design,involves concept genertation ,design,computer graphics.
learn game mechanisms ,player engagement and level design.
</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>
<!-- Begining of Events Section-->
<section id="workshops" class="section-spacer workshops-section">
<div class="container">
<header class="section-header text-center">
<h2 class="section-title wow fadeInUp">Events & Workshops</h2>
<p class="section-subtitle wow fadeInUp">Come learn, share and connect with us in person.</p>
</header>
<div class="workshops-type-switch">
<ul class="nav nav-pills justify-content-center js-tabs">
<li class="nav-item">
<a class="nav-link" href="#upcoming">Upcoming Events</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#past">Past Events</a>
</li>
</ul>
</div>
<div class="tab-content">
<div class="tab-pane" id="upcoming" role="tabpanel" aria-labelledby="upcoming">
<h4>No events to show currently. Please check again soon.</h4>
<!--<div class="row">
<div class="col-md-4 col-12">
<div class="card event-card wow fadeInUp">
<img alt="Event one poster" class="card-img-top" data-src="images/assets/hackfest.jpeg">
<div class="card-body">
<h5 class="card-title">Hackfest - GGV</h5>
<table>
<tr>
<td width="15%" class="text-blue"><i class="far fa-calendar-alt"></i></td>
<td>27<sup>th</sup> March 2021</td>
</tr>
<tr>
<td class="text-red"><i class="fas fa-map-marker-alt"></i></td>
<td>Online Remote</td>
</tr>
</table>
<a class="button schedule_button float-right" href="hackfest.html" >Know More</a>
</div>
</div>
</div>
</div>-->
</div>
<div class="tab-pane active" id="past" role="tabpanel" aria-labelledby="past">
<section id="hi" class="section-spacer">
<div class="container">
<div class="row align-items-center">
<div class="col-sm-6">
<div class="feature-list-image">
<img data-src="images\assets\events\urfirstandroidapp.jpg" alt="this is a game dev" height="500px" width="500px">
</div>
</div>
<div class="col-sm-5 ml-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">YOUR FIRST ANDROID APP </h2>
<hr>
<h6>DATE : 09<sup>th</sup> October 2022</h6>
<h6>Mode- Online</h6>
<p>Here GDSC_GGV is ready to acquaint you all with another session in the Compose Camp streak where you all will get to gain a deep understanding of your first android application.</p>
<!-- <a href="https://dsc.community.dev/events/details/developer-student-clubs-guru-ghasidas-vishwavidyalaya-presents-android-study-jams-info-session/" class="button float-right">Visit</a> -->
</div>
</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-5 mr-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">JETPACK COMPOSE</h2>
<hr>
<h6>DATE : 01<sup>th</sup> Oct 2022</h6>
<h6>Mode- Online</h6>
<p>We got you......Day 2 would be featuring a very special guest🤔 who is the former GDSC Co-lead and Android Study Jams Facilitator, Yeah! you guessed it😉, He's none other than Deepesh Garg, who is currently associated with Piping Rock as a Software Engineer.</p>
<!-- <a href="https://dsc.community.dev/events/details/developer-student-clubs-guru-ghasidas-vishwavidyalaya-presents-hacktoberfest-2020-gsoc-achievers-talk/" class="button float-right">Visit</a> -->
</div>
</div>
</div>
<div class="col-sm-6">
<div class="feature-list-image">
<img alt="Event six poster" class="card-img-top" data-src="images\assets\events\WhatsApp Image 2022-10-01 at 5.06.30 AM.jpeg" height="446px" width="646px">
</div>
</div>
</div>
</div>
</section>
<section id="hi" class="section-spacer">
<div class="container">
<div class="row align-items-center">
<div class="col-sm-6">
<div class="feature-list-image">
<img alt="Event five poster" class="card-img-top" data-src="images\assets\events\composecamp introtokotlin.jpg" height="446px" width="646px">
</div>
</div>
<div class="col-sm-5 ml-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">COMPOSDE CAMP:INTRODUCTION TO KOTLIN</h2>
<hr>
<h6>DATE : 30<sup>th</sup> Sep 2022</h6>
<h6>Mode- Online</h6>
<p>The GDSC - GGV is back with a new Android Event: Compose Camp! Our first event of the four-event campaign is just around the corner, and we couldn't be happier! Our team is ready to give you your offline first-app building experience, and we are looking forward to seeing you all soon!</p>
<!-- <a href="https://dsc.community.dev/events/details/developer-student-clubs-guru-ghasidas-vishwavidyalaya-presents-android-study-jams-info-session/" class="button float-right">Visit</a> -->
</div>
</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-5 mr-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">ONBOARDING EVENT:RECAP</h2>
<hr>
<h6>DATE : 22<sup>th</sup> Sep 2022</h6>
<h6>Mode- Online</h6>
<p>An efficacious and electrifying introductory session has embedded invigoration into everyone's spirit ⚡and what we can hope is that our outcomes speak for our endeavours!
So tighten your safety belts and buckle them up for a rollercoaster🎢 of some phenomenal experiences ahead with GDSCGGV💫!Warmest wishes and greetings to everyone!!!
</p>
<!-- <a href="https://dsc.community.dev/events/details/developer-student-clubs-guru-ghasidas-vishwavidyalaya-presents-hacktoberfest-2020-gsoc-achievers-talk/" class="button float-right">Visit</a> -->
</div>
</div>
</div>
<div class="col-sm-6">
<div class="feature-list-image">
<img alt="Event four poster" class="card-img-top" data-src="images\assets\events\onboardingevent.jpg">
</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-5 mr-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">HACKFEST - GGV</h2>
<hr>
<h6>DATE : 27<sup>th</sup> Mar 2021</h6>
<h6>Online Event - Virtual</h6>
<p>HACKFEST-GGV is an initiative to provide students with a platform to solve some of the pressing problems we face in our daily lives, and thus inculcate a culture of product innovation and a mindset of problem-solving.
The Theme of HACKFEST-GGV 2021 is to solve for one or more of the United Nations 17 Sustainable Development Goals.</p>
<a href="https://dscggv.github.io/hackfest.html" class="button float-right">Visit</a>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="feature-list-image">
<img alt="Event three poster" class="card-img-top" data-src="images/assets/hackfest.jpeg">
</div>
</div>
</div>
</div>
</section>
<section id="hi" class="section-spacer">
<div class="container">
<div class="row align-items-center">
<div class="col-sm-6">
<div class="feature-list-image">
<img alt="Event three poster" class="card-img-top" data-src="images/assets/events/android.jpg">
</div>
</div>
<div class="col-sm-5 ml-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Android Study Jams</h2>
<hr>
<h6>DATE : 13<sup>th</sup> Dec 2020</h6>
<h6>Info Session</h6>
<p>Info session is all about introduction to Android Development and Android Study Jams.</p>
<a href="https://dsc.community.dev/events/details/developer-student-clubs-guru-ghasidas-vishwavidyalaya-presents-android-study-jams-info-session/" class="button float-right">Visit</a>
</div>
</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-5 mr-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Hacktoberfest 2020 - GSOC Achiever's Talk</h2>
<hr>
<h6>DATE : 11<sup>th</sup> Oct 2020</h6>
<h6>Speaker Session / Tech Talk - Virtual</h6>
<p>We had Miss Shivangi Singh with us 🎊🎉
Shivangi is an android developer. She has successfully cracked Google Summer of Code 2020 and has worked on global open source projects.
She gave brief guidance on open source and provided us with the tips and tricks to crack GSoC.</p>
<a href="https://dsc.community.dev/events/details/developer-student-clubs-guru-ghasidas-vishwavidyalaya-presents-hacktoberfest-2020-gsoc-achievers-talk/" class="button float-right">Visit</a>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="feature-list-image">
<img alt="Event three poster" class="card-img-top" data-src="images/assets/events/fest.jpg">
</div>
</div>
</div>
</div>
</section>
<section id="hi" class="section-spacer">
<div class="container">
<div class="row align-items-center">
<div class="col-sm-6">
<div class="feature-list-image">
<img alt="Event three poster" class="card-img-top" data-src="images/assets/events/fest.jpg">
</div>
</div>
<div class="col-sm-5 ml-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Hacktoberfest 2020 - Expert Talk Warmup Sessions</h2>
<hr>
<h6>DATE : 5<sup>th</sup> Oct 2020</h6>
<h6>Speaker Session / Tech Talk - Virtual</h6>
<p>We learnt how to assemble an Android Things kit and saw the temperature
and
barometer sensors on the kit in action</p>
<a href="https://dsc.community.dev/events/details/developer-student-clubs-guru-ghasidas-vishwavidyalaya-presents-hacktoberfest-2020-gsoc-achievers-talk/" class="button float-right">Visit</a>
</div>
</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-5 mr-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">Info Session - Virtual</h2>
<hr>
<h6>DATE : 20<sup>th</sup> Sept 2020</h6>
<h6>Info Session</h6>
<p>It was an Info Session of DSC GGV,
to clear the doubts about what DSC is and what it does.</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="feature-list-image">
<img alt="Event three poster" class="card-img-top" data-src="images/assets/events/info1.jpg">
</div>
</div>
</div>
</div>
</section>
<section id="hi" class="section-spacer">
<div class="container">
<div class="row align-items-center">
<div class="col-sm-6">
<div class="feature-list-image">
<img alt="Event three poster" class="card-img-top" data-src="images/googlecloud.jpeg">
</div>
</div>
<div class="col-sm-5 ml-auto wow fadeInUp">
<div class="feature-list-wrapper">
<div class="content-header">
<h2 class="content-title">30 Days of Google Cloud</h2>
<hr>
<h6>DATE : 5<sup>th</sup> Oct 2020</h6>
<h6>Speaker Session / Tech Talk - Virtual</h6>
<p>It was a month-long session on Google Cloud, to make the participants cloud-ready, along with practical experience.</p>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="section-spacer african2 vanish">
<div class="container">
</div>
</section>
<!-- End Of Events Section-->
<!-- Start Of Team Section-->
<section id="team" class="section-spacer team-section">
<div class="container">
<header class="text-center section-header">
<h2 class="section-title wow fadeInUp">Meet The Team<br>( Core Team )</h2>
<p class="section-subtitle">Passionate students and faculty staff driving the success of the program.</p>
</header>
<div class="container-fluid">
<div class="tab-content">
<div class="tab-pane active" id="upcoming" role="tabpanel" aria-labelledby="upcoming">
<div class="row teams">
<div
class="col-md-6 col-lg-3 mb-4"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="team-member">
<figure>
<!--<ul class="social">
<li>
<a href="#"><span class="icon-facebook"></span></a>
</li>
<li>
<a href="#"><span class="icon-twitter"></span></a>
</li>
<li>
<a href="#"><span class="icon-linkedin"></span></a>
</li>
<li>
<a href="#"><span class="icon-instagram"></span></a>
</li>
</ul>-->
<img src="images/assets/team/alok_sir.png" alt="Image" class="img-fluid" />
</figure>
<div class="p-3">
<h3>Dr. Alok Kumar Singh Kushwaha</h3>
<span class="position">HoD, Department Of CSE</span><br>
<span class="position">Faculty Advisor</span>
</div>
</div>
</div>
<div
class="col-md-6 col-lg-3 mb-4"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="team-member">
<figure>
<ul class="social">
<li>
<a href="https://twitter.com/Agreatsquare"><span class="icon-twitter"></span></a>
</li>
<li>
<a href="https://www.linkedin.com/in/amruthasri/"><span class="icon-linkedin"></span></a>
</li>
<li>
<a href="https://www.instagram.com/agreatsquare/"><span class="icon-instagram"></span></a>
</li>
<li>
<a href="https://github.com/AmruthaSri852"><span class="icon-github"></span></a>
</li>
</ul>
<img src="images/team2022/Lead sri.jpeg" alt="Image" class="img-fluid"/>
</figure>
<div class="p-3">
<h3>Amaravati Amrutha Sri</h3>
<span class="position">DSC Lead</span>
</div>
</div>
</div>
<div
class="col-md-6 col-lg-3 mb-4"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="team-member">
<figure>
<ul class="social">
<!--<li>
<a href="#"><span class="icon-facebook"></span></a>
</li>-->
<!-- <li>
<a href="https://twitter.com/deepesh_garg__"><span class="icon-twitter"></span></a>
</li> -->
<li>
<a href="https://www.linkedin.com/in/adarsh-saurabh-b27492145"><span class="icon-linkedin"></span></a>
</li>
<li>
<a href="https://www.instagram.com/adarsh.saurabh/"><span class="icon-instagram"></span></a>
</li>
<li>
<a href="https://github.com/adarsh-saurabh"><span class="icon-github"></span></a>
</li>
</ul>
<img src="images/team2022/adarshh.jpeg" alt="Image" class="img-fluid"/>
</figure>
<div class="p-3">
<h3>Adarsh Saurabh</h3>
<span class="position">DSC Co-Lead</span>
</div>
</div>
</div>
<div
class="col-md-6 col-lg-3 mb-4"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="team-member">
<figure>
<ul class="social">
<!-- <li>
<a href="#"><span class="icon-facebook"></span></a>
</li> -->
<!-- <li>
<a href="https://twitter.com/AwasthiRuhi"><span class="icon-twitter"></span></a>
</li> -->
<li>
<a href="https://www.linkedin.com/in/yukta-watti-724843209/"><span class="icon-linkedin"></span></a>
</li>
<!-- <li>
<a href="https://www.instagram.com/ruhiawasthi93/"><span class="icon-instagram"></span></a>
</li> -->
<li>
<a href="https://github.com/Yukta-Watti"><span class="icon-github"></span></a>
</li>
</ul>
<img src="images/team2022/Yuktaa.jpeg" alt="Image" class="img-fluid"/>
</figure>
<div class="p-3">
<h3>Yukta Watti</h3>
<span class="position">Woman Tech-Lead</span>
</div>
</div>
</div>
<div
class="col-md-6 col-lg-3 mb-4"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="team-member">
<figure>
<ul class="social">
<!-- <li>
<a href="https://www.facebook.com/akash.krishna.125"><span class="icon-facebook"></span></a>
</li> -->
<li>
<a href="https://twitter.com/som_srijani"><span class="icon-twitter"></span></a>
</li>
<li>
<a href="https://www.linkedin.com/in/srijani-som/"><span class="icon-linkedin"></span></a>
</li>
<!-- <li>
<a href="https://www.instagram.com/akrishna_ak/"><span class="icon-instagram"></span></a>
</li> -->
<li>