-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
712 lines (709 loc) · 27.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GDSC - CIET</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<!-- <link rel="stylesheet" href="css/normalize.css" /> -->
<link rel="stylesheet" href="css/styles.css" />
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
</head>
<body>
<nav class="nav collapsible">
<a
href="https://gdsc.community.dev/"
class="nav__brand__container"
target="_blank"
><img
src="images/nav-logo.svg"
alt="GDSC SZABIST - ISB Logo"
class="nav__brand"
/></a>
<img src="icons/menu.svg" alt="Navbar Toggler" class="nav__toggler" />
<ul class="list nav__list collapsible__content">
<li class="nav__item"><a href="#aboutus">About Us</a></li>
<li class="nav__item"><a href="#technologies">Technologies</a></li>
<li class="nav__item">
<a href="#events"> Events & Workshops</a>
</li>
<li class="nav__item"><a href="#team">Team</a></li>
<li class="nav__item"><a href="#community">Community</a></li>
<li style="margin: 1.5rem 1rem 2rem 1rem ;">
<a href="https://gdsc.community.dev/chitkara-university-chandigarh-india/" target="_blank"
class="button button--primary nav--btn"
>Join us!</a>
</li>
<li>
<div class="toggle__container">
<input type="checkbox" class="checkbox" id="checkbox">
<label for="checkbox" class="label">
<img src="./icons/moon.png" alt="moon icon" class="toggle__icon">
<img src="./icons/sun.png" alt="sun icon" class="toggle__icon">
<div class='ball'>
</label>
</div>
</li>
</ul>
</nav>
<section class="block hero content">
<div class="section flex--column-row">
<header class="block__header hero__content">
<div class="flex--column-row">
<img
class="hero__logo"
src="icons/gdsc_chitkara.png"
alt="gdsc logo"
/>
<h1 class="hero__tagline hero__title">
Google Developer Student Club CIET
</h1>
<img
class="small__image"
src="favicon.png"
alt="gdsc logo"
/>
</div>
<p class="hero__tagline">
Developer Student Clubs powered by
<span class="text--primary">G</span
><span class="text--secondary">o</span
><span class="text--accent-two">o</span
><span class="text--primary">g</span
><span class="text--accent">l</span
><span class="text--secondary">e</span> Developers is an initiative
to grow their <span class="text--accent-two">knowledge</span> on
<span class="text--primary">developer technologies</span> and more
through
<span class="text--secondary"
>peer to peer workshops and events,</span
>
and gain relevant
<span class="text--accent">industry experience</span>.<br /><br />
<a
href="https://developers.google.com/community/gdsc"
class="link--primary hero--link"
target="_blank"
>Learn more about the Program</a
>
</p>
<a
href="https://gdsc.community.dev/chitkara-university-chandigarh-india/"
class="button button--primary button--link"
target="_blank"
>Become a Member</a
>
</header>
<img src="images/community-removebg.png" alt="community illustration" class="hero__image" />
</div>
</section>
<section class="block" id="aboutus">
<div class="section">
<header class="block__header banner primary--banner">
<h1 class="block__heading light--heading">About Us</h1>
</header>
<div class="block__body no-wrap">
<div class="card">
<div class="card__content">
<img src="icons/bulb-green.png" alt="bulb icon" class="icon" />
<h2 class="card__heading">Why GDSC?</h2>
<p class="card__text">
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="card">
<div class="card__content">
<img src="icons/rocket-blue.png" alt="rocket icon" class="icon" />
<h2 class="card__heading">Concept of GDSC</h2>
<p class="card__text">
The GDSC program is a grassroots channel through which Google
provides development, mobile & web development skills for
students, towards employability.
</p>
</div>
</div>
<div class="card">
<div class="card__content">
<img src="icons/audience-red.png" alt="audience icon" class="icon" />
<h2 class="card__heading">Target audience</h2>
<p class="card__text">
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 class="block" id="technologies">
<div class="section">
<header class="block__header banner secondary--banner">
<h1 class="block__heading light--heading">Technologies</h1>
<p class="text-set">
Opportunities to learn & access deep technical content.
</p>
</header>
<div class="block__body flex-row">
<img
src="images/app-development-illustration.jpg"
alt="app development illustration"
class="block__image"
/>
<div class="block__body__main">
<h2 class="block__heading text-to-left">App Development</h2>
<p class="block__text text-to-left">
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>
</div>
<div class="block__body flex-row-reverse">
<img
src="images/web-development-illustration.png"
alt="web development illustration"
class="block__image"
/>
<div class="block__body__main">
<h2 class="block__heading text-to-left">Web Development</h2>
<p class="block__text text-to-left">
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>
</div>
<div class="block__body flex-row">
<img
src="images/cyber-security-illustration.png"
alt="cyber security illustration"
class="block__image"
/>
<div class="block__body__main">
<h2 class="block__heading text-to-left">Cyber Security</h2>
<p class="block__text text-to-left">
Data is valuable. With so much sensitive information online,
companies need cybersecurity pros to protect it. This course is a
great starting point for anyone interested in cybersecurity, but
not sure where to start. Build your foundation by learning the
fundamentals of one of the fastest-growing fields today.
</p>
</div>
</div>
<div class="block__body flex-row-reverse">
<img src="images/ml-illustration.png" alt="machine learning illustration" class="block__image" />
<div class="block__body__main">
<h2 class="block__heading text-to-left">Machine Learning</h2>
<p class="block__text text-to-left">
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
utomatically learn and improve from experience without being
explicitly programmed.
</p>
</div>
</div>
<div class="block__body flex-row">
<img src="images/ai-illustration.png" alt="artificial intelligence illustration" class="block__image" />
<div class="block__body__main">
<h2 class="block__heading text-to-left">Artificial Intelligence</h2>
<p class="block__text text-to-left">
Help build the future with an exciting career in the fast-growing
field of artificial intelligence. Many industries like digital
marketing and social media experts are relying on deep learning
methods and AI algorithms to make business decisions and their
business applications better.
</p>
</div>
</div>
<div class="block__body flex-row-reverse">
<img
src="images/cloudcomputing-illustration.png"
alt="cloud computing illustration"
class="block__image"
/>
<div class="block__body__main">
<h2 class="block__heading text-to-left">Cloud Computing</h2>
<p class="block__text text-to-left">
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>
</div>
<div class="block__body flex-row">
<img
src="images/datascience-illustration.png"
alt="data science illustration"
class="block__image"
/>
<div class="block__body__main">
<h2 class="block__heading text-to-left">Data Science</h2>
<p class="block__text text-to-left">
Data science is an essential part of many industries today, given
the massive amounts of data that are produced, and is one of the
most debated topics in IT circles. Its popularity has grown over
the years, and companies have started implementing data science
techniques to grow their business and increase customer
satisfaction. We together will learn what data science is, and how
you can become a data scientist.
</p>
</div>
</div>
</div>
</section>
<section class="block" id="events">
<div class="section">
<header class="block__header banner yellow--banner">
<h1 class="block__heading ">Events & Workshops</h1>
</header>
<div class="block__body flex-row">
<div class="event__body__one">
<img
src="images/event--illustration.png"
alt="event illustration"
class="event__image"
/>
<p class="text-set max-text-width">
Developer Student Club CIET is inspired by the Google
Developers' Family. The motive is to create a local ecosystem of
Developers in and around the Campus. And having fun doing it.
<br /><br />Come learn, share and connect with us in person.
</p>
</div>
<div class="block__event__container">
<div class="block__event">
<div class="event__container">
<p class="event__type accent__two__event">Seminars</p>
<p class="event__description">
Get updated with the latest news and announcements.
</p>
</div>
<div class="event__container">
<p class="event__type primary__event">Study Jams</p>
<p class="event__description">
Hands-on experience with the community members.
</p>
</div>
</div>
<div class="block__event">
<div class="event__container">
<p class="event__type secondary__event">Projects</p>
<p class="event__description">
Projects with a social impact that help a lot of people.
</p>
</div>
<div class="event__container">
<p class="event__type accent__event">Hackathons</p>
<p class="event__description">
Dream. Explore. Wonder. Build it Together.
</p>
</div>
</div>
<a
href="https://gdsc.community.dev/chitkara-university-chandigarh-india/"
class="button button--accent--two button--link block--btn"
target="_blank"
>View Events & Workshops</a
>
</div>
</div>
</div>
</section>
<section class="block" id="team">
<div class="section">
<header class="block__header banner green--banner">
<h1 class="block__heading">Meet The Team</h1>
<p class="text-set light--heading">
Passionate students driving the success of the program.
</p>
</header>
<div class="block__body">
<div class="profile__container">
<div class="profile__card">
<header class="profile__card__header"></header>
<div class="profile__card__body">
<div class="profile__image__container">
<img
src="images/profile.jpeg"
alt=""
class="profile__card__image"
/>
</div>
<h1 class="card__person-name card__person-name_long">
John Doe
</h1>
<p class="person__position">GDSC Lead</p>
<div class="social__media">
<div class="social__media__container">
<a
href=""
class="social__icon__two"
target="_blank"
><img
src="icons/linkedin.png"
alt="linkedin icon"
class="social__media__icon"
/></a>
</div>
<div class="social__media__container">
<a
href=""
class="social__icon__two"
target="_blank"
><img
src="icons/google.png"
alt="google icon"
class="social__media__icon"
/></a>
</div>
</div>
</div>
</div>
</div>
<div class="profile__container">
<div class="profile__card">
<header class="profile__card__header secondary"></header>
<div class="profile__card__body">
<div class="profile__image__container">
<img
src="images/profile.jpeg"
alt=""
class="profile__card__image"
/>
</div>
<h1 class="card__person-name card__person-name_long">
Alex smith
</h1>
<p class="person__position">Co-Lead</p>
<div class="social__media">
<div class="social__media__container">
<a
href=""
class="social__icon__two"
target="_blank"
><img
src="icons/linkedin.png"
alt="linkedin icon"
class="social__media__icon"
/></a>
</div>
<div class="social__media__container">
<a
href=""
class="social__icon__two"
target="_blank"
><img
src="icons/google.png"
alt="google icon"
class="social__media__icon"
/></a>
</div>
</div>
</div>
</div>
</div>
<div class="profile__container">
<div class="profile__card">
<header class="profile__card__header accent--two"></header>
<div class="profile__card__body">
<div class="profile__image__container">
<img
src="images/profile.jpeg"
alt=""
class="profile__card__image"
/>
</div>
<h1 class="card__person-name card__person-name_long">
Ali fazal
</h1>
<p class="person__position">Web Dev Lead</p>
<div class="social__media">
<div class="social__media__container">
<a
href=""
class="social__icon__two"
target="_blank"
><img
src="icons/linkedin.png"
alt="linkedin icon"
class="social__media__icon"
/></a>
</div>
<div class="social__media__container">
<a
href=""
class="social__icon__two"
target="_blank"
><img
src="icons/google.png"
alt="google icon"
class="social__media__icon"
/></a>
</div>
</div>
</div>
</div>
</div>
<div class="profile__container">
<div class="profile__card">
<header class="profile__card__header accent--two"></header>
<div class="profile__card__body">
<div class="profile__image__container">
<img
src="images/profile.jpeg"
alt=""
class="profile__card__image"
/>
</div>
<h1 class="card__person-name card__person-name_long">
Mughal Serai
</h1>
<p class="person__position">Oragnizer Lead</p>
<div class="social__media">
<div class="social__media__container">
<a
href=""
class="social__icon__two"
target="_blank"
><img
src="icons/linkedin.png"
alt="linkedin icon"
class="social__media__icon"
/></a>
</div>
<div class="social__media__container">
<a
href=""
class="social__icon__two"
target="_blank"
><img
src="icons/google.png"
alt="google icon"
class="social__media__icon"
/></a>
</div>
</div>
</div>
</div>
</div>
<div class="profile__container">
<div class="profile__card">
<header class="profile__card__header secondary"></header>
<div class="profile__card__body">
<div class="profile__image__container">
<img
src="images/profile.jpeg"
alt=""
class="profile__card__image"
/>
</div>
<h1 class="card__person-name card__person-name_long">
Ali baba
</h1>
<p class="person__position">Technical Lead</p>
<div class="social__media">
<div class="social__media__container">
<a
href=""
class="social__icon__two"
target="_blank"
><img
src="icons/linkedin.png"
alt="linkedin icon"
class="social__media__icon"
/></a>
</div>
<div class="social__media__container">
<a
href=""
class="social__icon__two"
target="_blank"
><img
src="icons/google.png"
alt="google icon"
class="social__media__icon"
/></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="block" id="community">
<div class="section">
<header class="block__header banner primary--banner">
<h1 class="block__heading light--heading">Join Your Peers</h1>
<p class="text-set">
Connect with fellow community members by joining us through the
links mentiond below.
</p>
</header>
<div class="block__body flex-row">
<img
src="images/diversity-removebg.png"
alt="diversity illustration"
class="block__image extra-right-margin"
/>
<div class="block__event__container btn-block">
<a
href="https://chat.whatsapp.com/"
class="button button--secondary button--link block--btn"
target="_blank"
> <img src="icons/whatsapp.png" alt="Whatsapp Icon" class="social__media__icon social__media__icon__light"> Join us on Whatsapp!</a
>
<a
href="https://www.instagram.com/gdsc_ciet/"
class="button button--primary button--link block--btn"
target="_blank"
> <img src="icons/instagram.png" alt="Instagram Icon" class="social__media__icon social__media__icon__light"> Join us on Instagram!</a
>
<a
href="https://www.linkedin.com/company/gdsc-ciet/"
class="button button--secondary button--link block--btn"
target="_blank"
> <img src="icons/linkedin.png" alt="LinkedIn Icon" class="social__media__icon social__media__icon__light"> Join us on LinkedIn!</a
>
<a
href="https://www.facebook.com/"
class="button button--primary button--link block--btn"
target="_blank"
> <img src="icons/facebook.png" alt="Facebook Icon" class="social__media__icon social__media__icon__light"> Join us on Facebook!</a
>
</div>
</div>
</div>
</section>
<footer class="block footer">
<div class="footer--flex">
<div class="footer__img__social">
<img
src="images/gdsc-logo.svg"
alt="gdsc logo"
class="footer__brand"
/>
<div class="social__media__container">
<a
href="https://www.linkedin.com/company/gdsc-ciet/"
class="footer__icon"
target="_blank"
><img
src="icons/linkedin.png"
alt="LinkedIn Icon"
class="social__media__icon"
/></a>
<a
href="https://gdsc.community.dev/chitkara-university-chandigarh-india/"
class="footer__icon"
target="_blank"
><img
src="icons/google.png"
alt="Google Icon"
class="social__media__icon"
/></a>
<a
href="https://www.instagram.com/gdsc_ciet/"
class="footer__icon"
target="_blank"
><img
src="icons/instagram.png"
alt="Instagram Icon"
class="social__media__icon"
/></a>
<a
href="https://www.facebook.com/"
class="footer__icon"
target="_blank"
><img
src="icons/facebook.png"
alt="Facebook Icon"
class="social__media__icon"
/></a>
<a
href="mailto:[email protected]"
class="footer__icon"
target="_blank"
><img
src="icons/email.png"
alt="Mail Icon"
class="social__media__icon"
/></a>
</div>
</div>
<div class="footer--section">
<ul class="list">
<li class="list--element list--heading">Programs</li>
<li class="list--element">
<a href="https://gdg.community.dev/" target="_blank"
>Google Developer Groups</a
>
</li>
<li class="list--element">
<a href="https://gdsc.community.dev/" target="_blank"
>Google Developer Student Clubs</a
>
</li>
<li class="list--element">
<a
href="https://developers.google.com/community/experts"
target="_blank"
>Google Developer Experts</a
>
</li>
<li class="list--element">
<a
href="https://developers.google.com/womentechmakers"
target="_blank"
>Women Techmakers</a
>
</li>
</ul>
</div>
<div class="footer--section">
<ul class="list">
<li class="list--element list--heading">Developer Consoles</li>
<li class="list--element">
<a href="https://console.cloud.google.com/" target="_blank"
>Google Cloud Platform</a
>
</li>
<li class="list--element">
<a href="https://console.firebase.google.com/" target="_blank"
>Firebase</a
>
</li>
<li class="list--element">
<a href="https://console.developers.google.com/" target="_blank"
>Google API</a
>
</li>
<li class="list--element">
<a href="https://developers.google.com/products" target="_blank"
>All Products</a
>
</li>
</ul>
</div>
<div class="footer--section"></div>
</div>
<div class="credits">
<p>Copyright © 2024 GDSC CIET. All Rights Reserved.</p>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>