forked from gsasansol/GirlScript-Asansol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
448 lines (366 loc) · 19.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/a43ef1b1c0.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-+sLIOodYLS7CIrQpBjl+C7nPvqq+FbNUBDunl/OZv93DB7Ln/533i8e/mZXLi/P+"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.1.min.js" integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GirlScript Asansol</title>
</head>
<script>
const handleClose = () => {
var d = document.getElementById("close");
console.log("clicked", d)
d.style.height = 0;
}
const show1 = () => {
var d = document.getElementById("show1");
var down = document.getElementById("down1");
var cross = document.getElementById("cross1");
var col = document.getElementById("faq1");
if (d.style.display === "block") {
d.style.display = "none";
down.style.display = "block";
cross.style.display = "none";
col.style.backgroundColor = "rgb(243,242,198)";
} else {
d.style.display = "block";
down.style.display = "none";
cross.style.display = "block";
col.style.backgroundColor = "rgb(238, 149, 90)";
}
}
const show2 = () => {
var d = document.getElementById("show2");
var down = document.getElementById("down2");
var cross = document.getElementById("cross2");
var col = document.getElementById("faq2");
if (d.style.display === "block") {
d.style.display = "none";
down.style.display = "block";
cross.style.display = "none";
col.style.backgroundColor = "rgb(243,242,198)";
} else {
d.style.display = "block";
down.style.display = "none";
cross.style.display = "block";
col.style.backgroundColor = "rgb(238, 149, 90)";
}
}
const show3 = () => {
var d = document.getElementById("show3");
var down = document.getElementById("down3");
var cross = document.getElementById("cross3");
var col = document.getElementById("faq3");
if (d.style.display === "block") {
d.style.display = "none";
down.style.display = "block";
cross.style.display = "none";
col.style.backgroundColor = "rgb(243,242,198)";
} else {
d.style.display = "block";
down.style.display = "none";
cross.style.display = "block";
col.style.backgroundColor = "rgb(238, 149, 90)";
}
}
</script>
<body>
<div class="loader"></div>
<!-- Dismissable notification bar -->
<div class="notif-bar-btn" id="close">
<div style="display: flex;width:73%;align-items: center; justify-content: center;">
<!--To center only the text and the button-->
<div style="margin-right: 1rem;">Join us on Discord!</div>
<a href="https://discord.gg/vYSspBkgNc"><button class="button-61" role="button">Join Discord</button></a>
<!--Material UI button added-->
</div>
<div style="position:fixed; right: 30px">
<i class="fa fa-remove" style="cursor: pointer;font-size: 1.3rem;" onclick="handleClose()"></i>
</div>
</div>
<!--Navbar section goes here-->
<nav class="gs-navbar">
<!--logo-->
<img src="https://avatars.githubusercontent.com/u/104223990?v=4" alt="logo">
<!--name of the community added beside the logo-->
<div class="name">
<p>GirlScript Asansol</p>
<!--GirlScript Asansol in one line instead of 2 seperate lines-->
</div>
<!--toggle bar for small screens-->
<div class="toggle">
<a href="#"><svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="black" class="bi bi-list"
viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z" />
</svg></i></a>
</div>
<!--the other items of navbar is added below-->
<div class="options">
<a href="#home">Home</a>
<a href="#">About Us</a>
<a href="#">Resources</a>
<a href="#pastevents">Past Events</a>
<a href="#">Our Team</a>
<a href="#faq">FAQ</a>
<a href="#">Contact Us</a>
</div>
<!--dark mode button is now outside the option class-->
<button onclick="darkMode()" class="toggleButton">
<i class='fas fa-sun'></i>
</button>
</nav>
<!--added jQuery Event Methods for toggle bar to open and close-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$(function () {
$(".toggle").on("click", function () {
if ($(".options").hasClass("active")) {
$(".options").removeClass("active");
$(this).find("a").html(`<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="black" class="bi bi-list" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"/></svg>`);
}
else {
$(".options").addClass("active");
$(this).find("a").html(`<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="black" class="bi bi-x-lg" viewBox="0 0 16 16"><path d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z"/></svg>`);
}
});
});
</script>
<!---Header section goes here-->
<div class="header" id="home">
<div class="header-content">
<h2>Welcome to GirlScript Asansol <br>
Education First</h2>
<div class="line"></div>
<button onclick="window.location.href='https://discord.gg/vYSspBkgNc';" class="cta-button">Join
Us</button>
</div>
<div class="header-wave">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"
preserveAspectRatio="none">
<path
d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"
class="shape-fill" id="h-wave"></path>
</svg>
</div>
</div>
<!---About Us section goes here-->
<!--Past events secton goes here--->
<div class="past-events" id="pastevents">
<h1 class="events-title container-fluid" id="p-heading">Our Past Events</h1>
<div class="overlay-image">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="card-deck">
<div class="card">
<a class="card-links"
href="https://www.linkedin.com/feed/update/urn:li:activity:6926402246406467584"
target="_blank">
<img src="./Assets/event1.png" class="card-img-top" alt="event1">
<div class="card-body">
<h5 class="card-title" style="color: rgb(233, 99, 247)">Digital Poster
Making Competetion</h5>
<p class="card-text">Theme based upon Mother's Day.Templates are allowed but
not
Palgiarism.Certification of participation provided to all.Top 3 winners
selected as sub committe members of Girlscript Asansol. </p>
<p class="card-text"><small class="text-muted">Last Date of Submission:6th
May
2022</small>
</p>
</div>
</a>
</div>
<div class="card">
<a class="card-links"
href="https://www.youtube.com/watch?v=dESy5UpKN2c"
target="_blank">
<img src="./Assets/event2.png" class="card-img-top" alt="event2">
<div class="card-body">
<h5 class="card-title" style="color:rgb(249, 79, 41)">Careerscript Episode
#1</h5>
<p class="card-text">Live session with Soumyajit Bhattacharya,Engineering
Manager @Amazon.Students guided with career choices, Roadmap to Off
Campus
Placements,etc.Certification of participation provided to all</p>
<p class="card-text"><small class="text-muted">Date: 29th May 2022 <br>
Platform: Google Meet</small></p>
</div>
</a>
</div>
<div class="card">
<a class="card-links"
href="https://www.linkedin.com/feed/update/urn:li:activity:6949757600250888192"
target="_blank">
<img src="./Assets/event3.png" class="card-img-top" alt="event3">
<div class="card-body">
<h5 class="card-title" style="color:rgb(12, 171, 211)">Portfolio Competetion
</h5>
<p class="card-text">Flex your dev skills through your amazing portfolios!
Preferred tech stacks : HTML, CSS JS, ReactJs, Angular Js,
etc...(anything of your choice).Verified Certification to all Participants.
</p>
<p class="card-text"><small class="text-muted">Date : 9th-10th July</small></p>
</div>
</a>
</div>
</div>
</div>
<div class="carousel-item ">
<div class="card-deck">
<div class="card">
<a class="card-links"
href="https://www.youtube.com/watch?v=-DPTkXIp9cE"
target="_blank">
<img src="./Assets/event4.png" class="card-img-top" alt="event4">
<div class="card-body">
<h5 class="card-title" style="color:rgb(249, 79, 41)">Careerscript
Episode #2
</h5>
<p class="card-text">Live session with : Karuna Karan Vijayaraghavan, oracle
certified @Gssoc career choices, Roadmap to Ai and Machine Learning
Certification of participation provided to all</p>
<p class="card-text"><small class="text-muted">21st Aug,2022</small>
</p>
</div>
</a>
</div>
<div class="card">
<a class="card-links"
href="https://github.com/gsasansol/GirlScript-Asansol"
target="_blank">
<img src="./Assets/event5.png" class="card-img-top" alt="event5">
<div class="card-body">
<h5 class="card-title" style="color:rgb(22, 216, 238) ;">Hacktoberfest 2022
</h5>
<p class="card-text">We have made a beginner friendly repository for all the
open source enthusiast. To create issues, so that you find it easy to
contribute
and easily complete the criteria for winning the swags. </p>
<p class="card-text"><small class="text-muted">Date: 1st Oct to 31st Oct,2022
<br>
Platform: Google Meet </small></p>
</div>
</a>
</div>
<div class="card">
<a class="card-links"
href="#"
>
<img src="./Assets/event6.png" class="card-img-top" alt="event6">
<div class="card-body">
<h5 class="card-title" style="color: rgb(216, 148, 30)">Comming soon</h5>
<p class="card-text">Lorem ipsum dolor sit amet consectetur adipisicing
elit. Cupiditate deserunt doloremque earum adipisci illo, accusamus
magni incidunt iusto nisi officiis numquam veritatis perferendis dolore
dolorem, architecto nulla perspiciatis ea consectetur? </p>
<p class="card-text"><small class="text-muted">Date: 0.0.0</small></p>
</div>
</a>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<!---Achievements section goes here-->
<!---Our team section goes here-->
<!---FAQ section goes here-->
<h1 class="faq-heading" id="f-heading">Frequently Asked Questions</h1>
<div class="faq-container" id="faq">
<div class="faq" id="faq1" onclick="show1()">
<div>
<h3 class="faq-title">
What is GS Asansol?
</h3>
<!-- <button class=""> -->
<div class="show_hide">
<i class="fas fa-chevron-down" id="down1"></i>
<i class="fas fa-times" id="cross1" style="display: none;"></i>
</div>
<!-- </button> -->
</div>
<p class="faq-text" style="display: none;" id="show1">
GirlScript Asansol is a non-profit student run community registered under the GirlScript Foundation on
23rd April, 2022. We aim to empower people and especially underrepresented groups in the field of
technology. GirlScript Asansol's mission is to create opportunity, learning, growth and diversity in
technology academia and industry.
</p>
</div>
<div class="faq" id="faq2" onclick="show2()">
<div>
<h3 class="faq-title">
How to join the community?
</h3>
<!-- <button class=""> -->
<div class="show_hide">
<i class="fas fa-chevron-down" id="down2"></i>
<i class="fas fa-times" id="cross2" style="display: none;"></i>
</div>
<!-- </button> -->
</div>
<p class="faq-text" style="display: none;" id="show2">
Join our discord server to become a member: <a href="https://discord.gg/vYSspBkgNc"><u> Discord </u></a>
</p>
</div>
<div class="faq" id="faq3" onclick="show3()">
<div>
<h3 class="faq-title">
Benefits of joining the community?
</h3>
<!-- <button class=""> -->
<div class="show_hide">
<i class="fas fa-chevron-down" id="down3"></i>
<i class="fas fa-times" id="cross3" style="display: none;"></i>
</div>
<!-- </button> -->
</div>
<p class="faq-text" style="display: none;" id="show3">
► GUIDE & SUPPORT<br>
► HELP EVERYONE TO LEARN & GROW<br>
► WORKSHOPS AND MEETING SESSIONS <br>
► HACKATHONS & INTERNSHIP OPPORTUNITY
</p>
</div>
</div>
<!---Contact Us section goes here-->
<!---Footer section goes here-->
<!---Cursor-->
<div class="cursor"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
setTimeout(function () {
$('.loader').fadeToggle();
}, 2500);
</script>
<script src="index.js"></script>
</body>
</html>