-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
686 lines (627 loc) · 28.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GWOC</title>
<!-- <link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" /> -->
<link rel="stylesheet" href="styles/index.css">
<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=Poppins:wght@200;300;600" rel="stylesheet">
<link rel="shortcut icon" href="assets/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css"
integrity="sha256-46r060N2LrChLLb5zowXQ72/iKKNiw/lAmygmHExk/o=" crossorigin="anonymous" />
</head>
<body>
<!-- Navbar -->
<nav style="align-items: center;">
<div class="logo">
<a href="index.html">
<img src="assets/logo-new.png" alt="">
</a>
</div>
<div class="openMenu"><i class="fa fa-bars"></i></div>
<ul class="mainMenu">
<li><a class="nav-underline" href="index.html">HOME</a></li>
<li><a class="nav-underline-about" href="#about">ABOUT</a></li>
<li><a class="nav-underline-contact" href="#contact">CONTACT</a></li>
<li><a class="nav-underline-team" href="pages/teampage.html">TEAM</a></li>
<li><a class="nav-underline" href="pages/event.html">EVENT</a></li>
<li><a class="register" href="#register"><button class="register-btn">REGISTER</button></a></li>
<div class="closeMenu"><i class="fa fa-times"></i></div>
<span class="icons">
<a href="https://www.linkedin.com/company/girlscript-winter-of-contributing/" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://www.instagram.com/girlscriptwinterofcontributing/" target="_blank">
<i class="fab fa-instagram"></i>
</a>
<a href="https://twitter.com/girlscriptwoc" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</span>
</ul>
</nav>
<!-- <div class="navbar" data-aos="fade-down" data-aos-delay="2000">
<div class="logo">
<img src="../assets/Logo.png">
</div>
<div class="nav-content">
<div class="nav-content-topic" id="home">Home</div>
<div class="nav-content-topic">
<a href="#about" class="nav-content-topic-about">About</a>
</div>
<div class="nav-content-topic" id="contact">Contact</div>
<div class="nav-content-topic" id="team"><a href="./gwoc_teampage.html"
class="nav-content-topic-about">Team</a></div>
<div class="nav-content-topic" id="event">Event</div>
<div class="nav-content-topic">
<button class="nav-content-topic-button">
<div class="nav-content-topic-button-register">
<a href="#register"
style="color: white; text-decoration: none; font-family: 'Poppins', sans-serif;">Register</a>
</div>
</button>
</div>
</div>
</div> -->
<!-- Home Page Design -->
<div class="home-page-design" data-aos="fade-up" data-aos-delay="100" id="home">
<img src="assets/home-design.png" class="home-page-design-image">
</div>
<div class="fade" data-aos="fade-up" data-aos-delay="100">
<fade/>
</div>
<div class="home-page-unity" data-aos="fade-up" data-aos-delay="200">
<img style="width: 300px;" src="assets/unity-new.png" alt="">
<h3>U-N-I-T(y)eam</h3>
</div>
<!-- About Section -->
<div class="about-section" id="about" data-aos="fade-in" data-aos-delay="500">
<div class="about-girlscript" data-aos="fade-up" data-aos-duration="1000">
<div class="about-girlscript-header">
About GirlScript
</div>
<div class="about-girlscript-image">
<img src="assets/GWOC-header.png">
</div>
<div class="about-girlscript-content">
<p>
<b>GirlScript</b> is a non-profit organization that encourages diversity
in technical education by providing reservations for women and underrepresented groups in
society.It started as a project but eventually gained enormous momentum to become India's First
and Biggest Technical Community. <br />
<br>Our reach spreads across <b> 64 cities in India </b> and <b> 4 international chapters </b>
within <b> 4.5 years only. </b> Furthermore, <b> GirlScript </b> has impacted the lives of over
500,000+ students.We aim to not only help establish <b> gender equality in the technical domains
</b>
but also <b> revolutionize the lives of the individuals who wish to learn and develop in tech.</b>
</p>
</div>
</div>
<div class="about-gwoc" data-aos="fade-up" data-aos-duration="1000">
<div class="about-gwoc-header">
About GWOC
</div>
<div class="about-gwoc-image">
<img src="assets/about-GWOC.png">
</div>
<div class="about-gwoc-content">
<p>
<span style="color: #FF7A19;"><b> GirlScript Winter of Contributing </b> </span> is a
<b> three-month </b>
newly established initiative by <span style="color: #FF7A19;"> <b> GirlScript Foundation </b>
</span>
to be conducted during winters. GWOC encourages individuals to share their knowledge and
ideas to develop technical skills and gain valuable experience in the field of tech education.
Over the course of the program, participants can contribute to a variety of themes under the
guidance of an expert facilitator.
</p>
</div>
</div>
</div>
<!--Contribution Section-->
<div class="contribution" data-aos="fade-down" data-aos-duration="1000">
<div>
<p class="contribution-heading">
How Can You <span style="color: #FF7A19;">CONTRIBUTE ?</span>
</p>
</div>
<div class="contribution-content">
<p>
The entire programme is divided into three primary contribution sections, with each contributor
responsible
for submitting their work under the supervision of supervisors who are in charge of making valid github
commits.
<br>
<br>
Each person is free to participate in whatever way they see fit. They can help in any of the following
three
ways:<a> Documentation </a>, <a> Audio </a> and <a> Video </a>. Special prizes would be given for the
multilingual
category Video editors will be assigned to each team to edit the video and audio.
</p>
</div>
</div>
<!--About Contribution Section-->
<div class="about-contribution">
<!-- Document Contribution Section -->
<div class="about-document-contribution" data-aos="fade-up" data-aos-duration="1000">
<div class="about-document-contribution-content">
<div class="about-document-contribution-heading">
IsDocument()
</div>
<div class="about-document-contribution-content-content">
1. Content such as codes or tutorials
<br>
2. Preferred language should be English
<br>
3. Accepted via Google Colab
<br>
4. Clear,Consise and Complete
<br>
</div>
</div>
<div class="about-document-contribution-image">
<img src="assets/isdocument.png">
</div>
</div>
<!-- Video Contribution Section -->
<div class="about-video-contribution" data-aos="fade-up" data-aos-duration="1000">
<div class="about-video-contribution-image">
<img src="assets/isvideo.png">
</div>
<div class="about-video-contribution-content">
<div class="about-video-contribution-heading">
IsVideo()
</div>
<div class="about-video-contribution-content-content">
1. Animations, screen-recordings, etc.
<br>
2. Video length should not exceed 25 min
<br>
3. Presentable and Clear
<br>
4. Accepted via Google drive link
<br>
</div>
</div>
</div>
<!-- Audio Contribution -->
<div class="about-audio-contribution" data-aos="fade-up" data-aos-duration="1000">
<div class="about-audio-contribution-content">
<div class="about-audio-contribution-heading">
IsAudio()
</div>
<div class="about-audio-contribution-content-content">
1. Should be in mp3 format
<br>
2. Includes speech clarity,concise
<br>
3. Presentation can be submitted with audio
<br>
4. Accepted via Google drive
<br>
</div>
</div>
<div class="about-audio-contribution-image">
<img src="assets/isaudio.png">
</div>
</div>
</div>
<!--Roles Section-->
<div class="role-section" id="register">
<div class="role-section-heading">
<p>Choose your <span style="color: #FF7A19;">ROLE</span> and join us</p>
</div>
<div class="role-cards">
<div class="contributer-role-card" data-aos="fade-down" data-aos-duration="2000">
<div class="contributer-role-card-heading">
CONTRIBUTORS
</div>
<div class="contributer-role-card-image">
<img style="width: 310px; padding-bottom: 13px;" src="assets/Contributer-role-card.png" alt="">
</div>
<div class="contributer-role-card-content">
<p>Whether you're a newbie
or a seasoned pro, GirlScript Winter of Contributing will give you a taste of what it's
like to contribute to a content repository. For three months, you will work on your
selected domains under the supervision of experienced supervisors <span
style="color: #313131; font-weight: 700;">You can register here
for
GWoC
2021 as a Contributor.</span></p>
<button class="register-button">REGISTRATION CLOSED</button>
</div>
</div>
<div class="contributer-role-card" data-aos="fade-down" data-aos-duration="2000">
<div class="contributer-role-card-heading">
SUPERVISORS
</div>
<div class="contributer-role-card-image">
<img src="assets/Supervisor-role-card.png" alt="">
</div>
<div class="contributer-role-card-content">
<p>Supervisors are experts in the Open Source project on which the team is currently
working. At the commencement of the program, they will provide project roadmap,
will be available to evaluate pull requests, assist with concepts, encourage the
team throughout the program.
<span style="color: #313131; font-weight: 700;">You can register here
for
GWoC
2021 as a Supervisor.</span>
</p>
<button class="register-button">REGISTRATION CLOSED</button>
</div>
</div>
<div class="mentor-role-card" data-aos="fade-down" data-aos-duration="2000">
<div class="mentor-role-card-heading">
MENTORS
</div>
<div class="mentor-role-card-image">
<img src="assets/Mentor-role-card.png" style="margin-bottom: 9px;">
</div>
<div class="mentor-role-card-content">
<p>Mentors will offer
assistance to the contributors. They will be available to contribute to Github,assist
contributors in creating content, answer questions, manage the subject repository, and
provide generally assistance to contributors throughout the winter.<span
style="color: #313131; font-weight: 700;">You can register here
for
GWoC
2021 as a Mentor.</span></p>
<button class="register-button">REGISTRATION CLOSED</button>
</div>
</div>
</div>
</div>
<!--Timeline Section-->
<div class="timeline-section">
<h2>Stay up to date with <span style="color: #FF7A19;"> TIMELINE </span></h2>
<div class="timeline">
<div class="timeline__event animated fadeInUp delay-3s timeline__event--type1" data-aos="fade-down"
data-aos-duration="300">
<div class="timeline__event__icon ">
<i class="far fa-calendar-alt"></i>
</div>
<div class="timeline__event__date">
August 1st, 2021
</div>
<div class="timeline__event__content ">
<div class="timeline__event__title">
Registration Open
</div>
<div class="timeline__event__description">
<p>Registration begins for Contributors, Supervisors and Contributors
</p>
</div>
</div>
</div>
<div class="timeline__event animated fadeInUp delay-2s timeline__event--type2" data-aos="fade-down"
data-aos-duration="300">
<div class="timeline__event__icon">
<i class="far fa-calendar-alt"></i>
</div>
<div class="timeline__event__date">
August 15th, 2021
</div>
<div class="timeline__event__content">
<div class="timeline__event__title">
REGISTRATION CLOSES
</div>
<div class="timeline__event__description">
<p>Registration closes for Supervisors, Mentors and Contributors
</p>
</div>
</div>
</div>
<div class="timeline__event animated fadeInUp delay-1s timeline__event--type3" data-aos="fade-down"
data-aos-duration="300">
<div class="timeline__event__icon">
<i class="far fa-calendar-alt"></i>
</div>
<div class="timeline__event__date">
August 15th, 2021
</div>
<div class="timeline__event__content">
<div class="timeline__event__title">
SELECTION FOR CONTRIBUTORS
</div>
<div class="timeline__event__description">
<p>Selection mails will be sent to the selected contributors.
</p>
</div>
</div>
</div>
<div class="timeline__event animated fadeInUp timeline__event--type1" data-aos="fade-down"
data-aos-duration="300">
<div class="timeline__event__icon">
<i class="far fa-calendar-alt"></i>
</div>
<div class="timeline__event__date">
August 25th, 2021
</div>
<div class="timeline__event__content">
<div class="timeline__event__title">
SELECTION FOR SUPERVISORS
</div>
<div class="timeline__event__description">
<p>Selection mails will be sent to the selected supervisors.
</p>
</div>
</div>
</div>
<div class="timeline__event animated fadeInUp delay-1s timeline__event--type3" data-aos="fade-down"
data-aos-duration="300">
<div class="timeline__event__icon">
<i class="far fa-calendar-alt"></i>
</div>
<div class="timeline__event__date">
August 26th, 2021
</div>
<div class="timeline__event__content">
<div class="timeline__event__title">
SELECTION FOR MENTORS
</div>
<div class="timeline__event__description">
<p>Selection mails will be sent to the selected mentors.
</p>
</div>
</div>
</div>
<div class="timeline__event animated fadeInUp timeline__event--type1" data-aos="fade-down"
data-aos-duration="300">
<div class="timeline__event__icon">
<i class="far fa-calendar-alt"></i>
</div>
<div class="timeline__event__date">
August 30th, 2021
</div>
<div class="timeline__event__content">
<div class="timeline__event__title">
TOPIC ASSIGNMENT
</div>
<div class="timeline__event__description">
<p>Topics to be assigned to the contributors by the mentors.
</p>
</div>
</div>
</div>
<div class="timeline__event animated fadeInUp delay-1s timeline__event--type3" data-aos="fade-down"
data-aos-duration="300">
<div class="timeline__event__icon">
<i class="far fa-calendar-alt"></i>
</div>
<div class="timeline__event__date">
September 1st, 2021
</div>
<div class="timeline__event__content">
<div class="timeline__event__title">
CONTRIBUTION BEGINS
</div>
<div class="timeline__event__description">
<p>Contributing period begins.
</p>
</div>
</div>
</div>
<div class="timeline__event animated fadeInUp timeline__event--type1" data-aos="fade-down"
data-aos-duration="300">
<div class="timeline__event__icon">
<i class="far fa-calendar-alt"></i>
</div>
<div class="timeline__event__date">
September 2nd-5th, 2021
</div>
<div class="timeline__event__content">
<div class="timeline__event__title">
GIT & GITHUB WORKSHOP
</div>
<div class="timeline__event__description">
<p>A virtual worshop on Git and Github.
</p>
</div>
</div>
</div>
<div class="timeline__event animated fadeInUp delay-1s timeline__event--type3" data-aos="fade-down"
data-aos-duration="300">
<div class="timeline__event__icon">
<i class="far fa-calendar-alt"></i>
</div>
<div class="timeline__event__date">
December 1st, 2021
</div>
<div class="timeline__event__content">
<div class="timeline__event__title">
CONTRIBUTION ENDS
</div>
<div class="timeline__event__description">
<p>Contributing period comes to an end.
</p>
</div>
</div>
</div>
</div>
</div>
<!--Sponsors Section-->
<div class="sponsers">
<div class="sponser-heading">
OUR <span style="color: #FF7A19;">SPONSORS </span> & <span style="color: #FF7A19;"> PROMOTORS </span>
</div>
<!-- <div class="primary-sponsers">
<div class="primarysponsers-heading">
Primary Sponsor
</div>
<div class="primary-sponser-image">
<img src="./assets/DigitalOcean Logo.png" alt="">
</div>
</div>
<div class="othersponsers">
<div class="secondary-sponser">
<div class="secondary-sponser-heading">
Secondary Sponsor
</div>
<div class="secondary-sponser-image">
<img src="./assets/Linode Logo.png" alt="">
</div>
</div>
<div class="tertiary-sponser">
<div class="tertiary-sponser-heading">
Tertiary Sponsor
</div>
<div class="tertiary-sponser-image">
<img src="./assets/Honeybadger Logo.png" alt="">
</div>
</div>
</div> -->
<div class="other-sponsor">
<div class="other-sponsor-section">
<!-- <div class="other-sponsor-heading">
Other Sponsors
</div> -->
<button class="sponsor-button">
<a href="https://forms.gle/oPhfoHjCvp41tEp1A" target="_blank" style="color: white; text-decoration: none; font-family: 'Poppins', sans-serif;">
SPONSOR US</a>
</button>
</div>
</div>
</div>
<!-- FAQ Section -->
<div id="faq" class="faq-section">
<div class="faq-heading">
<span style="color: #FF7A19;">(FAQs)</span>
</div>
<div class="faqs-container">
<div class="faq">
<h3 class="faq-title">
Will a beginner, with absolutely no knowledge of GitHub, gain anything fruitful?
</h3>
<p class="faq-text">
<b>Yes, absolutely.</b> The organization's goal is to help newcomers advance in the area of
technology. We'll have sub-tasks ideal for both novices and award winners, ensuring that each
and every contributor learns something new from the topics to which he or she contributes.
</p>
<button class="faq-toggle">
<i class="fas fa-chevron-down"></i>
<i class="fas fa-times"></i>
</button>
</div>
<div class="faq">
<h3 class="faq-title">
Is there any registration fee?
</h3>
<p class="faq-text">
No, there are no fees associated with participation. It is completely free of charge.
</p>
<button class="faq-toggle">
<i class="fas fa-chevron-down"></i>
<i class="fas fa-times"></i>
</button>
</div>
<div class="faq">
<h3 class="faq-title">
Any age limit for participation?
</h3>
<p class="faq-text">
No, there is no upper age limit for GWoC participants. It is open to everyone.
</p>
<button class="faq-toggle">
<i class="fas fa-chevron-down"></i>
<i class="fas fa-times"></i>
</button>
</div>
<div class="faq">
<h3 class="faq-title">
How will we receive the prizes (if won) and certificates?
</h3>
<p class="faq-text">
The digital certificate will be distributed to all deserving contributors. The reward money
will be deposited into all of the top contributor's bank accounts. After the event, we'll send
you an email with the bank account information.
<span style="font-size: 12px; font-weight: bold;"> *T&C Applied </span>
</p>
<button class="faq-toggle">
<i class="fas fa-chevron-down"></i>
<i class="fas fa-times"></i>
</button>
</div>
<div class="faq">
<h3 class="faq-title">
By what time will the result come?
</h3>
<p class="faq-text">
In the first week of January, the results will be announced.
</p>
<button class="faq-toggle">
<i class="fas fa-chevron-down"></i>
<i class="fas fa-times"></i>
</button>
</div>
<div class="faq">
<h3 class="faq-title">
What minimum conditions should the project satisfy?
</h3>
<p class="faq-text">
There are no such requirements that the content repository must meet. Mentors and Admins can
suggest a proposal in any sector in which they have specific knowledge.
</p>
<button class="faq-toggle">
<i class="fas fa-chevron-down"></i>
<i class="fas fa-times"></i>
</button>
</div>
</div>
</div>
<!-- Contact Section -->
<div class="contact" id="contact">
<div class="contact-heading-section">
<div class="contact-heading">
The <span style="color: #AB4806;"> World's Largest </span> Multilingual Content <br>
Repository, <span style="color: #AB4806;"> Open </span> for Everyone.
</div>
<div class="social-media">
<a href="https://www.linkedin.com/company/girlscript-winter-of-contributing/" target="_blank"
class="icon1">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://www.instagram.com/girlscriptwinterofcontributing/" target="_blank" class="icon2">
<i class="fab fa-instagram"></i>
</a>
<a href="https://twitter.com/girlscriptwoc" target="_blank" class="icon3">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
<div class="contact-links">
<img class="contact-logo" src="assets/favicon.png" alt="">
<ul class="quick-links">
<h3>QUICK LINKS</h3>
<a href="#faq">
<li>FAQ</li>
</a>
<a href="#register">
<li>Register</li>
</a>
<a href="./pages/codeofconduct.html" target="_blank">
<li>Code Of Conduct</li>
</a>
</ul>
</div>
</div>
<div class="contact-copyright">
<p>Copyright © 2021 GirlScript Winter of Contributing. All rights reserved.</p>
</div>
<!-- AOS Tag -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
AOS.init({
once: false,
});
</script>
<script src="js/app.js"></script>
</body>
</html>