-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
656 lines (456 loc) · 25.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Title of the webpage -->
<title>Google Developer Student Club IIST</title>
<!-- Favicon linking -->
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicons/favicon-32x32.png">
<link rel="apple-touch-icon" sizes="180x180" href="icons/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicons/favicon-16x16.png">
<!--Links to css CDN's-->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Barlow:100,200,500" rel="stylesheet">
<!-- Links to css files -->
<link rel="stylesheet" href="css/index.css">
<!-- <link rel="stylesheet" href="css/svg.css"> -->
<!--Meta tags for SEO and Responsiveness-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#141414"/>
<meta name="Description" content="GDSC IIST (Google Developer Student Club IIST ) is a Google program for university students, with an aim to help students build their development skills.">
<!-- Adding PWA Capabilities -->
<link rel="manifest" href="manifest.json">
<style>
.bubbles{
position:absolute;
width:100%;
height: 100%;
z-index:0;
overflow:hidden;
top:0;
left:0;
}
.bubble{
position: absolute;
bottom:-100px;
width:40px;
height: 40px;
background:#909090;
border-radius:50%;
opacity:0.5;
animation: rise 10s infinite ease-in;
}
.bubble:nth-child(1){
width:40px;
height:40px;
left:10%;
animation-duration:8s;
}
.bubble:nth-child(2){
width:20px;
height:20px;
left:20%;
animation-duration:5s;
animation-delay:1s;
}
.bubble:nth-child(3){
width:50px;
height:50px;
left:35%;
animation-duration:7s;
animation-delay:2s;
}
.bubble:nth-child(4){
width:80px;
height:80px;
left:50%;
animation-duration:11s;
animation-delay:0s;
}
.bubble:nth-child(5){
width:35px;
height:35px;
left:55%;
animation-duration:6s;
animation-delay:1s;
}
.bubble:nth-child(6){
width:45px;
height:45px;
left:65%;
animation-duration:8s;
animation-delay:3s;
}
.bubble:nth-child(7){
width:90px;
height:90px;
left:70%;
animation-duration:12s;
animation-delay:2s;
}
.bubble:nth-child(8){
width:25px;
height:25px;
left:80%;
animation-duration:6s;
animation-delay:2s;
}
.bubble:nth-child(9){
width:15px;
height:15px;
left:70%;
animation-duration:5s;
animation-delay:1s;
}
.bubble:nth-child(10){
width:90px;
height:90px;
left:25%;
animation-duration:10s;
animation-delay:4s;
}
@keyframes rise{
0%{
bottom:-100px;
transform:translateX(0);
}
50%{
transform:translate(100px);
}
100%{
bottom:1080px;
transform:translateX(-200px);
}
}
</style>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw.js')
.then(function () {
console.log('Service Worker Registered');
});
}
</script>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.8.1/firebase-app.js"></script>
<!-- If you enabled Analytics in your project, add the Firebase SDK for Analytics -->
<script src="https://www.gstatic.com/firebasejs/8.8.1/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.8.1/firebase-messaging.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyDekMXWA6fD3xHPV9JSWySw_otmPwcpSUY",
authDomain: "dsc-updates.firebaseapp.com",
databaseURL: "https://dsc-updates.firebaseio.com",
projectId: "dsc-updates",
storageBucket: "dsc-updates.appspot.com",
messagingSenderId: "303908668455",
appId: "1:303908668455:web:0ae9791a1b7976330dfa02",
measurementId: "G-Q1SGQCL6BJ"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
</script>
<!--ChatBot-->
<script>(function(w, d) { w.CollectId = "61c766a2b104f43d8bab24a4"; var h = d.head || d.getElementsByTagName("head")[0]; var s = d.createElement("script"); s.setAttribute("type", "text/javascript"); s.async=true; s.setAttribute("src", "https://collectcdn.com/launcher.js"); h.appendChild(s); })(window, document);</script>
</head>
<body>
<div class="success-message barlow-medium" id="success-message"></div>
<div class="error-message barlow-medium" id="error-message"></div>
<div class="change-device-message barlow-medium" id="error-message">
<p data-aos="fade-up" class="barlow-extralight text-center extra-break">
Your email is registered to a another device. Would you like to shift to this devices for notifications?
</p>
<div data-aos="fade-up" class="button-maker">
<div class="barlow-thin button-text" id="change-deviceID">
Yes
</div>
</div>
<div data-aos="fade-up" class="button-maker">
<div class="barlow-thin button-text" id="no-change-deviceID">
No
</div>
</div>
</div>
<div class="main-menu">
<!-- <div class="main-menu-close" id="menu-close">
<svg xmlns="http://www.w3.org/2000/svg" width="20.332" height="20.332" viewBox="0 0 20.332 20.332">
<g id="Group_8" data-name="Group 8" transform="translate(-1042.445 -266.495)">
<path id="Path_9" data-name="Path 9" d="M1042.8,266.849l19.625,19.625" fill="none" stroke="#141414" stroke-width="1"/>
<path id="Path_10" data-name="Path 10" d="M1062.423,266.849,1042.8,286.474" fill="none" stroke="#141414" stroke-width="1"/>
</g>
</svg>
</div> -->
<div class="main-menu-item-holder">
<h2 class="barlow-extralight text-center" id="home">Home</h2>
<!-- <h2 class="barlow-extralight text-center" id="our-work">Our Focus</h2> -->
<!-- <h2 class="barlow-extralight text-center" id="our-work">Our Focus</h2> -->
<h2 class="barlow-extralight text-center" id="team"><a href="./team.html">The Team</a></h2>
<h2 class="barlow-extralight text-center" id="updates">Updates</h2>
<!-- <h2 class="barlow-extralight text-center" id="links"><a href="./morelinks.html">Our Feed</a></h2> -->
<h2 class="barlow-extralight text-center" id="team"><a href="./youtube.html">Videos</a></h2>
<h2 class="barlow-extralight text-center" id="team"><a href="./blogs.html">Blogs</a></h2>
<h2 class="barlow-extralight text-center" id="contact">Contact Us</h2>
</div>
<img src="images/menu-image.svg" class="main-menu-image" alt="Open Menu">
</div>
<div class="navbar">
<div class="navbar-dsc-logo">
<!-- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 2428 693">
<defs>
<clipPath id="clip-custom_3">
<rect width="2428" height="693"/>
</clipPath>
</defs>
<g id="custom_3" data-name="custom – 3" clip-path="url(#clip-custom_3)">
<g id="Group_1" data-name="Group 1" transform="translate(0.088 173.543)">
<path id="Path_1" data-name="Path 1" d="M50.956.005,257.588,2.834c28.53.391,51.975,23.47,52.365,51.549S287.533,104.907,259,104.517L52.37,101.688C23.84,101.3.4,78.218,0,50.139S22.426-.386,50.956.005Z" transform="translate(320.693 90.519) rotate(150)" fill="#fe2c25" opacity="0.998"/>
<path id="Path_2" data-name="Path 2" d="M52.37,2.834,259,.005c28.53-.391,51.342,22.055,50.951,50.134s-23.835,51.158-52.365,51.549L50.956,104.517C22.426,104.907-.386,82.461,0,54.382S23.84,3.224,52.37,2.834Z" transform="translate(268.432 346.364) rotate(-150)" fill="#2785fc" opacity="0.998"/>
<path id="Path_4" data-name="Path 4" d="M52.37,101.688,259,104.517c28.53.391,51.342-22.055,50.951-50.134S286.118,3.224,257.588,2.834L50.956.005C22.426-.386-.386,22.06,0,50.139S23.84,101.3,52.37,101.688Z" transform="translate(336.222 255.846) rotate(-30)" fill="#ffba00" opacity="0.998"/>
<path id="Path_3" data-name="Path 3" d="M50.956,104.517l206.632-2.829c28.53-.391,51.975-23.47,52.365-51.549S287.533-.386,259,.005L52.37,2.834C23.84,3.224.4,26.3,0,54.382S22.426,104.907,50.956,104.517Z" transform="translate(388.483 0) rotate(30)" fill="#00a050" opacity="0.998"/>
</g>
<path id="Path_6" data-name="Path 6" d="M42.2,220.815V-.691h63.973q26.389,0,44.381,7.4A72.008,72.008,0,0,1,179.937,28.3q11.4,14.194,16.393,34.385t5,45.78q0,26.389-5.4,44.981t-13.794,30.987a72.169,72.169,0,0,1-18.992,19.592,93.2,93.2,0,0,1-21.391,11,89.709,89.709,0,0,1-20.391,4.8,159.313,159.313,0,0,1-15.993,1ZM4.212-32.677V252.8H102.17q35.585,0,61.574-10t42.782-28.988q16.793-18.992,24.789-46.78t8-63.773q0-68.771-35.585-102.356T102.17-32.677Zm446.61,83.564h35.985q-.8-23.59-9-40.583a79.074,79.074,0,0,0-22.39-28.188,92.357,92.357,0,0,0-32.986-16.393,152.541,152.541,0,0,0-40.783-5.2,146.442,146.442,0,0,0-38.184,5,104.987,104.987,0,0,0-33.186,15.194,76.9,76.9,0,0,0-23.39,25.989Q278.1,22.5,278.1,44.09q0,19.592,7.8,32.586a63.208,63.208,0,0,0,20.791,21.191,120.832,120.832,0,0,0,29.387,13.194q16.393,5,33.386,8.8t33.386,7.4a152.211,152.211,0,0,1,29.388,9.4q12.994,5.8,20.791,14.994t7.8,23.99q0,15.593-6.4,25.589a46.557,46.557,0,0,1-16.793,15.793,75.978,75.978,0,0,1-23.39,8.2,141.8,141.8,0,0,1-25.789,2.4,122.029,122.029,0,0,1-31.187-4,77.6,77.6,0,0,1-26.589-12.395,63.621,63.621,0,0,1-18.392-21.391q-7-12.994-7-30.987H269.3q0,25.989,9.4,44.981a86.245,86.245,0,0,0,25.589,31.187A112.072,112.072,0,0,0,341.868,253.2a167.386,167.386,0,0,0,45.381,6,173.555,173.555,0,0,0,39.383-4.6,113.97,113.97,0,0,0,35.785-14.794,83.911,83.911,0,0,0,26.189-26.389q10.2-16.193,10.2-38.983,0-21.191-7.8-35.185a69.459,69.459,0,0,0-20.791-23.19,110.123,110.123,0,0,0-29.388-14.594q-16.393-5.4-33.386-9.4t-33.386-7.4a174.823,174.823,0,0,1-29.387-8.6q-12.995-5.2-20.791-13.394t-7.8-21.391q0-13.994,5.4-23.39A41.98,41.98,0,0,1,335.871,2.908a62.637,62.637,0,0,1,20.591-8,116.126,116.126,0,0,1,23.59-2.4q29.587,0,48.579,13.794T450.822,50.887Zm294.675,2.4H783.48q-3.2-22.79-13.594-40.183A98.867,98.867,0,0,0,743.9-15.884a113.92,113.92,0,0,0-35.585-17.593,146.743,146.743,0,0,0-42.382-6q-32.786,0-58.175,11.795A120.227,120.227,0,0,0,565.373,4.507a141.151,141.151,0,0,0-25.789,47.78,190.461,190.461,0,0,0-8.8,58.575,201.3,201.3,0,0,0,8.2,58.375q8.2,27.188,24.59,47.18A113.868,113.868,0,0,0,604.756,247.8q24.789,11.4,57.975,11.4,54.777,0,86.363-29.987t37.184-83.964H748.3a108.929,108.929,0,0,1-7.2,32.786,79.129,79.129,0,0,1-16.593,26.189,75.573,75.573,0,0,1-25.189,17.193q-14.594,6.2-33.386,6.2-25.589,0-43.981-9.6a85.894,85.894,0,0,1-30.187-25.789q-11.8-16.193-17.393-37.984a184.987,184.987,0,0,1-5.6-46.18,165.375,165.375,0,0,1,5.6-43.182A111.3,111.3,0,0,1,591.762,27.9,86.407,86.407,0,0,1,621.749,2.108q18.192-9.6,43.781-9.6,29.987,0,51.778,15.194T745.5,53.286ZM911.426-32.677H963.4l71.57,225.9h.8l73.169-225.9h50.778L1062.162,252.8h-55.576Zm276.682,0h49.979V252.8h-49.979Zm83.964,0h231.1V10.5h-90.761V252.8h-49.979V10.5h-90.361Z" transform="translate(863.089 249.909)" fill="#707070"/>
</g>
</svg> -->
<img data-aos="fade-up" src="images/DSClogo.svg" class="logo-nav" alt="GDSC IIST" style="margin-right: 45px; margin-left: -20px;">
<img data-aos="fade-up" src="images/DSClogo.svg" class="logo-nav-light" alt="GDSC IIST" style="margin-right: 45px; margin-left: -20px;">
</div>
<div class="menu barlow-extralight">
<div class="menu-item" id="home-desk">
Home
</div>
<div class="menu-item" id="team-desk">
<a href="#">The Team</a>
</div>
<div class="menu-item" id="updates-desk">
Updates
</div>
<div class="menu-item" id="team-desk">
<a href="#">Blogs</a>
</div>
<div class="menu-item" id="team-desk">
<a href="#">Our Feed</a>
</div>
<div class="menu-item" id="hacka">
<a href="#">Hackathon</a>
</div>
<div class="menu-item" id="contact-desk">
Contact Us
</div>
</div>
<div class="menu-phone" id="menu-open">
<svg xmlns="http://www.w3.org/2000/svg" width="36.68" height="21" viewBox="0 0 36.68 21">
<g id="Group_7" data-name="Group 7" transform="translate(-1000.435 -266.349)">
<path id="Path_6" data-name="Path 6" d="M-223.854-311.151h27.406" transform="translate(1233.563 578)" stroke-width="1"/>
<path id="Path_7" data-name="Path 7" d="M-223.854-311.151h18.34" transform="translate(1242.629 588)" stroke-width="1"/>
<path id="Path_8" data-name="Path 8" d="M-223.854-311.151h36.68" transform="translate(1224.289 598)" stroke-width="1"/>
</g>
</svg>
</div>
</div>
<div class="main" id="home-scroll">
<div class="main-text-holder">
<div class="main-text-holder-heading">
<img data-aos="fade-up" src="images/DSClogo.svg" class="logo" alt="GDSC IIST">
<img data-aos="fade-up" src="images/DSClogo.svg" class="logo-light" alt="GDSC IIST">
</div>
<p data-aos="fade-up" class="barlow-extralight continous-text">
<font style="color: #637282; font-family: 'Google Sans', sans-serif;"><br>
<p>Developer Student Clubs is a
<font color="blue">G</font><font color="red">o</font><font color="yellow">o</font><font color="blue">g</font><font color="green">l</font><font color="red">e</font>
Developers program for university students to learn<font color="yellow"> mobile </font> and
<font color="blue">web development skills</font> , <font color="red">design thinking skills</font>
and <font color="green">leadership skills.</font>
</p></font>
</p>
</div>
<!---Bubbles-->
<section class="sticky">
<div class="bubbles">
<div class="bubble" style="background:#4285F4;"></div>
<div class="bubble"style="background:#DB4437"></div>
<div class="bubble"style="background:#F4B400"></div>
<div class="bubble"style="background:#4285F4;"></div>
<div class="bubble"style="background:#0F9D58"></div>
<div class="bubble" style="background:#4285F4;"></div>
<div class="bubble"style="background:#DB4437"></div>
<div class="bubble"style="background:#F4B400"></div>
<div class="bubble"style="background:#4285F4;"></div>
<div class="bubble"style="background:#0F9D58"></div>
<div class="bubble" style="background:#4285F4;"></div>
<div class="bubble"style="background:#DB4437"></div>
<div class="bubble"style="background:#F4B400"></div>
<div class="bubble"style="background:#4285F4;"></div>
<div class="bubble"style="background:#0F9D58"></div>
</div>
</section>
<div class="main-down-arrow" id="down-arrow">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28.55 44.393">
<g id="Group_2" data-name="Group 2" transform="translate(-966 -967.48)">
<path id="Path_1" data-name="Path 1" d="M982,967.98V1011.1" transform="translate(-1.5)" fill="none" stroke="#141414" stroke-linecap="round" stroke-width="1"/>
<path id="Path_2" data-name="Path 2" d="M966.813,997.8l13.973,13.577L994.363,997.8" transform="translate(-0.313)" fill="none" stroke="#141414" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
</g>
</svg>
</div>
<img src="images/landing.svg" class="main-image" alt="Home Page">
</div>
<div class="container-main holded-container" id="our-work-scroll">
<h1 data-aos="fade-up" class="barlow-medium text-center">
What We Do?
</h1>
<p data-aos="fade-up" class="barlow-extralight continous-text text-center extra-break">
A Google Developer Student Club is a Google recognised student body at a college which directly reports to Google for their activities.
</p>
<p data-aos="fade-up" class="barlow-extralight text-center">
A GDSC conducts workshops, seminars and other fun activities which help the students connect with Google.
</p>
</div>
<div class="container-main holded-container" id="team-scroll">
<h1 data-aos="fade-up" class="barlow-medium text-center">
Get to know the team
</h1>
<p data-aos="fade-up" class="barlow-extralight text-center extra-break">
We are team of experienced developers who are interested in giving back to the community by helping others learn as well.
</p>
<a href="./team.html">
<div data-aos="fade-up" class="button-maker">
<div class="barlow-thin button-text">
The Team
</div>
</div>
</a>
</div>
<div class="container-main holded-container" id="updates-scroll">
<h1 data-aos="fade-up" class="barlow-medium text-center">
Updates
</h1>
<p data-aos="fade-up" class="barlow-extralight text-center extra-break">
We host events and hackathons all year long, where you may learn new skills by putting your knowledge and talents to use in order to win prizes.
</p>
<div data-aos="fade-up" class="buttons">
<a href="https://gdsc.community.dev/indore-institute-of-science-technology-indore/" target="_blank" rel="noopener">
<div class="button-maker" id="projects-button">
<div class="barlow-thin button-text">
Events
</div>
</div>
</a>
</div>
</div>
<div class="container-main holded-container" id="updates-scroll">
<h1 data-aos="fade-up" class="barlow-medium text-center">
Our Blogs
</h1>
<p data-aos="fade-up" class="barlow-extralight text-center extra-break">
Our prime focus is to learn and disseminate knowledge. Our team roll out blogs regularly on medium.
</p>
<div data-aos="fade-up" class="buttons">
<a href="./blogs.html">
<div class="button-maker" id="projects-button">
<div class="barlow-thin button-text">
Check out
</div>
</div>
</a>
</div>
</div>
<div class="container-main holded-container" id="hacko">
<h1 data-aos="fade-up" class="barlow-medium text-center">
Hackathon
</h1>
<p data-aos="fade-up" class="barlow-extralight text-center extra-break">
Coming Soon ...
</p>
<div data-aos="fade-up" class="buttons">
<a href="hackathon.html">
<div class="button-maker" id="projects-button">
<div class="barlow-thin button-text">
Timeline
</div>
</div>
</a>
</div>
</div>
<div class="container-main holded-container" id="contact-scroll">
<h1 data-aos="fade-up" class="barlow-medium text-center">
Contact us
</h1>
<p data-aos="fade-up" class="barlow-extralight text-center extra-break">
We’re very active on social media.
</p>
<div data-aos="fade-up" class="icons small-icons">
<a href="https://instagram.com/gdsc_iist?utm_medium=copy_link" target="_blank" rel="noopener">
<img src="images/Instagram.svg" class="circle-icon spc" alt="GDSC IIST Instagram">
</a>
<a href="https://twitter.com/GDSC_IIST?s=08" target="_blank" rel="noopener">
<img src="images/Twitter.svg" class="circle-icon spc" alt="GDSC IIST Twitter">
</a>
<a href="#" target="_blank" rel="noopener">
<img src="images/Linkedin.svg" class="circle-icon spc" alt="GDSC IIST Linkedin">
</a>
<a href="https://www.facebook.com/GDSC-IIST-278752810637221/" target="_blank" rel="noopener">
<img src="images/Facebook.svg" class="circle-icon spc" alt="GDSC IIST Facebook">
</a>
<a href="#" target="_blank" rel="noopener">
<img src="images/Github.svg" class="circle-icon spc" alt="GDSC IIST GitHub">
</a>
<a href="#" target="_blank" rel="noopener">
<img src="images/Medium.svg" class="circle-icon spc" alt="GDSC IIST Medium">
</a>
<a href="https://youtube.com/channel/UCFj6y-GvZz4k5OXL05KSAKA" target="_blank" rel="noopener">
<img src="images/Youtube.svg" class="circle-icon spc" alt="GDSC IIST Youtube">
</a>
<a href="#" target="_blank" rel="noopener">
<img src="images/Discord.svg" class="circle-icon spc" alt="GDSC IIST Youtube">
</a>
<!-- Add Discord and change logos -->
</div>
</div>
<div class="container-main holded-container">
<h1 data-aos="fade-up" class="barlow-medium text-center">
Submit an idea
</h1>
<p data-aos="fade-up" class="barlow-extralight text-center extra-break">
Didn’t get the chance to implement your favourite idea? Why not give us a chance to bring it to real life.
</p>
<a href="#" target="_blank" rel="noopener">
<div data-aos="fade-up" class="button-maker">
<div class="barlow-thin button-text">
Submit idea
</div>
</div>
</a>
</div>
<div class="container-main holded-container" id="stayupdated">
<h1 data-aos="fade-up" class="barlow-medium text-center">
Stay Updated
</h1>
<p data-aos="fade-up" class="barlow-extralight text-center extra-break">
Want to stay updated with the latest news about GDSC IIST? Enter you email address and allow notifications.
</p>
<input data-aos="fade-up" type="text" placeholder="Enter Email" class="text-field-maker" id="email">
<div data-aos="fade-up" class="button-maker" id="get-updates">
<div class="barlow-thin button-text">
Get Updates
</div>
</div>
</div>
<div class="footer container-main container-main-last">
<div class="dark-light-toggle barlow-medium text-center" id="dark-light-toggle">
<p>I Want Dark Mode !!</p>
</div>
</div>
<!-- Footer Begins -->
<div class="footer container-main container-main-last" style="text-align:center; margin-bottom: 0%; margin-top: 0%; padding-top: 1%; padding-bottom: 1%; ">
<div class="#" >
<p >Copyright © 2021, All Rights Reserved <br> GDSC IIST</p>
</div>
</div>
<!--Links to JS files and JS CDN's-->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="js/jq.js"></script>
<script src="js/index.js"></script>
<script>
AOS.init();
</script>
</body>
</html>