forked from StudentCode-in/StudentCode-in.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
938 lines (843 loc) · 40 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-165861327-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-165861327-1');
</script>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta name="google-site-verification" content="FT2t5BivKk3B39Z5iv1eupyKrr3XzPh7JcjXD7RoPNU" />
<title>Student Code-In </title>
<meta content="" name="descriptison">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Montserrat:300,400,500,600,700@display=swap"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/vendor/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<script type="text/javascript" id="botcopy-embedder-d7lcfheammjct" class="botcopy-embedder-d7lcfheammjct"
data-botId="5eb171581bb92200073b9bb7">
var s = document.createElement('script');
s.type = 'text/javascript'; s.async = true;
s.src = 'https://widget.botcopy.com/js/injection.js';
document.getElementById('botcopy-embedder-d7lcfheammjct').appendChild(s);
</script>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header">
<div id="topbar">
<div class="container">
<div class="social-links">
<a href="https://twitter.com/studentcodein" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/company/43204229/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/StudentCode-in" class="github"><i class="fa fa-github"></i></a>
<a href="https://t.me/scodein" class="telegram"><i class="fa fa-telegram"></i></a>
</div>
</div>
</div>
<div class="container">
<div class="logo float-left">
<!-- Uncomment below if you prefer to use an image logo -->
<h1 class="text-light"><a href="#intro" class="scrollto"><span>Student Code-In</span></a></h1>
<!-- <a href="#header" class="scrollto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a> -->
</div>
<nav class="main-nav float-right d-none d-lg-block">
<ul>
<li class="active"><a href="#topbar">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="project.html">Projects</a></li>
<li><a href="#timeline">Timeline</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="team.html">Our Team</a></li>
<li class="drop-down"><a href="">More</a>
<ul>
<li><a href="webinar.html">Webinars</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#footer">Contact Us</a></li>
</li>
</ul>
</li>
</ul>
</nav><!-- .main-nav -->
</div>
</header><!-- #header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="clearfix">
<div class="container d-flex h-100">
<div class="row justify-content-center align-self-center">
<div class="col-md-6 intro-info order-md-first order-last">
<h2>STUDENT CODE-IN</h2>
<h5><br>A Step Towards<span> Open Source!</span></h5>
<div>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
</div>
<div class="col-md-6 intro-img order-md-last order-first">
<img src="assets/img/intro-img.svg" alt="" class="img-fluid">
</div>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container"
style="-webkit-box-shadow: 0 8px 6px -6px black;-moz-box-shadow: 0 8px 6px -6px black;box-shadow: 0 8px 6px -6px black;">
<div class="row">
<div class="col-lg-5 col-md-6">
<div class="about-img">
<img src="assets/img/about-img.svg" alt="">
</div>
</div>
<div class="col-lg-7 col-md-6">
<div class="about-content">
<h2>About Us</h2>
<h3>The fast evolving face of technology today sets higher demands for the massive crowd pleasing field
"OPEN SOURCE".</h3>
<br>
<ul>
<li><i class="ion-android-checkmark-circle"></i>STUDENT CODE-IN is founded with a vision to promote
all-round information to those keen students who are here in the globe finding a way for their
obstacle.</li>
<li><i class="ion-android-checkmark-circle"></i> At STUDENT CODE-IN we have strived to a system that
supports and encourages you with varied quality of experiences offered by expert mentors.</li>
<li><i class="ion-android-checkmark-circle"></i>It is our firm belief that as a part of STUDENT CODE-IN
you will get an array of opportunities to develop your skills in numerous ways.</li>
<li><i class="ion-android-checkmark-circle"></i>We assure you that this platform gives you a touch of
redefined excellence, vision, and wings to your dreams of being a developer.</li>
</ul>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Call To Action Section ======= -->
<section id="call-to-action" class="call-to-action wow fadeInUp">
<div class="container">
<div class="row">
<div class="col-lg-9 text-center text-lg-left">
<h3 class="cta-title">Call To Code</h3>
<p class="cta-text"> Students and mentors with interest to avail this opportunity,to give a step up to their
talent can apply at STUDENT CODE-IN.</p>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a class="cta-btn align-middle" href="#services">Call To Code</a>
</div>
</div>
</div>
</section><!-- End Call To Action Section -->
<!-- ======= Features Section ======= -->
<section id="services" class="services section-bg">
<div class="container">
<header class="section-header">
<h3>REGISTRATION</h3>
<p>Registrations are closed for SCI-2020 program.</p>
</header>
<div class="row">
<div class="modal fade" id="popupModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h2 style="color:#444;" class="modal-title text-info" id="exampleModalLabel">Can't apply</h2>
<button style="color: #ff0000;font-size:45px;" type="button" class="close" data-dismiss="modal"
aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p style="margin:0 0 5px 0;">Registration are closed now.</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #fceef3;"><i class="ionicons ion-person-stalker"
style="color: #e98e06;"></i></div>
<h4 class="title">PARTICIPANT APPLICATION</h4>
<p class="description">We know applying for a new project requires a leap of faith in yourself. If you
have basic GIT knowledge or are beginners or even veteran developers, We want you to feel comfortable
and excited to apply at Student code-in.</p>
<a class="btn btn-primary btn-xl js-scroll-trigger" style="width:55%;margin-left:80px;margin-top:40px;"
href="https://bit.ly/2zd3U4h" data-toggle="modal" data-target="#popupModal">Apply</a>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #fff0da;"><i class="ionicons ion-code-working"
style="color: #ff689b;"></i></div>
<h4 class="title">PROJECT SUBMISSION</h4>
<p class="description">Open source organizations that would like to participate as a mentor organization
in this year’s program can apply.</p><br><br>
<a class="btn btn-primary btn-xl js-scroll-trigger" style="width:55%;margin-left:80px;margin-top:40px;"
href="https://forms.office.com/Pages/ResponsePage.aspx?id=DQSIkWdsW0yxEjajBLZtrQAAAAAAAAAAAAN__ix50hBUQTJRV1gwREZYMjdUVUtMQUlYVjcyVDJTUC4u"
data-toggle="modal" data-target="#popupModal">Apply</a>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #fceef3;"><i class="ionicons ion-person-stalker"
style="color: #e98e06;"></i></div>
<h4 class="title">MENTOR APPLICATION</h4>
<p class="description">Being a mentor is surely not an easy task but, are you passionate about helping
students grow to their full potential in the field of open source. If you want to change someone's life
trajectory from today. So be a mentor with us!!</p>
<a class="btn btn-primary btn-xl js-scroll-trigger" style="width:55%;margin-left:80px;margin-top:40px;"
href="https://forms.office.com/Pages/ResponsePage.aspx?id=DQSIkWdsW0yxEjajBLZtrQAAAAAAAAAAAAN__ix50hBUREY4OVRINVFFNVMyUkpTSjc5MFZPN0kyRS4u"
data-toggle="modal" data-target="#popupModal">Apply</a>
</div>
</div>
</section>
<!-- ======= Services Section ======= -->
<section id="services" class="services section-bg">
<div class="container">
<header class="section-header">
<h3>HOW DOES IT WORK?</h3>
<p>Student Code-in is a 8 weeks long open source project. In this,all the registered participants would get an
exquisite opportunity to interact with the mentors and the Organizing Team .
</header>
<div class="row">
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #fceef3;"><i class="ionicons ion-person-stalker"
style="color: #3fcdc7;"></i></div>
<h4 class="title">STUDENTS</h4>
<p class="description">Students with interest to avail of this opportunity, to give a step up to their
talent need to apply at student-code-in and select the project on which they need to make headway.
According to their motive, they will be assigned a mentor who will give their utmost devotion and
dedication.</p>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #fff0da;"><i class="ionicons ion-code-working"
style="color: #e98e06;"></i></div>
<h4 class="title">PROJECTS</h4>
<p class="description">Buckle yourself up cause you are getting a boon to working on a variety of
extremely challenging and concept building project with us here at Student code-in.<br>The projects are
build considering the vast field of open source.</p><br>
<br>
</div>
</div>
<div class="col-md-6 col-lg-4 wow bounceInUp" data-wow-delay="0.1s" data-wow-duration="1.4s">
<div class="box">
<div class="icon" style="background: #fceef3;"><i class="ionicons ion-person-stalker"
style="color: #3fcdc7;"></i></div>
<h4 class="title">MENTORS</h4>
<p class="description">The mentors of this initiative are oceans of excellence in their specialized fields
with their expertise commitment and sense of worth you will definitely have a technocloak around
yourself.
So be assured you are fortunate enough to have such guides.</p><br>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- ======= Why Us Section ======= -->
<section id="why-us" class="why-us">
<div class="container-fluid">
<header class="section-header">
<h3>WHY SCI?</h3><br>
</header>
<div class="row">
<div class="col-lg-6">
<div class="why-us-img">
<img src="assets/img/why.svg" alt="" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<div class="why-us-content">
<div class="features wow bounceInUp clearfix">
<i class="fa fa-check" aria-hidden="true" style="color: #589af1;"></i>
<p>We have highly skilled mentors and a devoting support system with excellent technical knowledge and
experience in making you aware of the latest tricks and techniques required for your project.</p>
</div>
<div class="features wow bounceInUp clearfix">
<i class="fa fa-check" aria-hidden="true" style="color: #589af1;"></i>
<p>We invest continuously in training to be able to respond to any new technology challenges and demands
from the students</p>
</div>
<div class="features wow bounceInUp clearfix">
<i class="fa fa-check" aria-hidden="true" style="color: #589af1;"></i>
<p>We offer a strong sense of spirit to all those who come to the door of Student code-in.
There are a host of projects that will develop heights of confidence within you in the field of “OPEN
SOURCE”.
</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Why Us Section -->
<section id="features" class="features">
<div class="container">
<div class="row feature-item mt-5 pt-5">
<div class="col-lg-6 wow fadeInUp order-1 order-lg-2">
<img src="assets/img/eligibility.svg" class="img-fluid" style="height:400px;float: right;">
</div>
<div class="col-lg-6 wow fadeInUp pt-4 pt-lg-0 order-2 order-lg-1">
<header class="section-header">
<h3>ELIGIBILITY</h3>
</header>
<p>
Irrespective of any discrimination on the grounds of gender and pre-requisite knowledge about open source.
We welcome every individual that walks to the corridor of Student Code-in.
</p>
<p>
All the students who want to explore their talent can apply here for an experience that will create a
benchmark for the whole of your life.<br>Besides that we will be grateful to do our part for building your
future in an accomplished way.
</p>
</div>
</div>
</div>
</section><!-- End Features Section -->
<section id="timeline">
<div class="container">
<div class="page-header">
<h2 class="mb-4" style="text-align:center; padding-top:30px;">TIMELINE</h2>
</div>
<ul class="timeline">
<li class="timeline-inverted">
<div class="timeline-badge" style="background: #5BC0DE;">
<i class="fa fa-check"></i>
</div>
<div class="timeline-panel" style="border-right:10px solid #5BC0DE;">
<div class="timeline-heading">
<h5 class="timeline-title"> Project Announced</h5>
<div class="timeline-body">
<p>Selected projects announced on website.</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
12 June,2020
</small>
</div>
</div>
</li>
<li>
<div class="timeline-badge primary">
<i class="fa fa-check"></i>
</div>
<div class="timeline-panel" style="border-left:10px solid #008CBA;">
<div class="timeline-heading">
<h5 class="timeline-title">Project Submission</h5>
</div>
<div class="timeline-body">
<p>Begins</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
11:59 pm 15 May,2020
</small>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-badge success">
<i class="fa fa-check"></i>
</div>
<div class="timeline-panel" style="border-right:10px solid #43AC6A;">
<div class="timeline-heading">
<h5 class="timeline-title">Participant/Mentor Registration</h5>
</div>
<div class="timeline-body">
<p>Begins</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
11:59 pm 20 May,2020
</small>
</div>
</div>
</li>
<li>
<div class="timeline-badge danger">
<i class="fa fa-hand-paper-o" aria-hidden="true"></i>
</div>
<div class="timeline-panel" style="border-left:10px solid #F04124;">
<div class="timeline-heading">
<h5 class="timeline-title">Project Submission</h5>
<div class="timeline-body">
<p>Ends</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
11:59 pm 31 May,2020
</small>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-badge warning">
<i class="fa fa-hand-paper-o" aria-hidden="true"></i>
</div>
<div class="timeline-panel" style="border-right:10px solid #E99002;">
<div class="timeline-heading">
<h5 class="timeline-title">Participant/Mentor Registration</h5>
<div class="timeline-body">
<p>Ends</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
11:59 pm 9 June,2020
</small>
</div>
</div>
</li>
<li>
<div class="timeline-badge info">
<i class="fa fa-file-pdf-o"></i></div>
<div class="timeline-panel" style="border-left:10px solid #5BC0DE;">
<div class="timeline-heading">
<h5 class="timeline-title"> Project Announced</h5>
<div class="timeline-body">
<p>Selected projects announced on website.</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
12 June,2020
</small>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-badge primary">
<i class="fa fa-thumbs-o-up"></i></div>
<div class="timeline-panel" style="border-right:10px solid #008CBA;">
<div class="timeline-heading">
<h5 class="timeline-title">Acceptance Mails</h5>
<div class="timeline-body">
<p>Sent to the selected participants and mentors</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
Till 14 June,2020
</small>
</div>
</div>
</li>
<li>
<div class="timeline-badge warning">
<i class="fa fa-users" aria-hidden="true"></i></div>
<div class="timeline-panel" style="border-left:10px solid #E99002;">
<div class="timeline-heading">
<h5 class="timeline-title">Community Bonding</h5>
<div class="timeline-body">
<p>Period</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
14 - 17 June,2020
</small>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-badge info">
<i class="fa fa-hourglass-start" aria-hidden="true"></i></div>
<div class="timeline-panel" style="border-right:10px solid #5BC0DE;">
<div class="timeline-heading">
<h5 class="timeline-title">SCI</h5>
<div class="timeline-body">
<p>Begins</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
18 June,2020
</small>
</div>
</div>
</li>
<li>
<div class="timeline-badge success">
<i class="fa fa-hourglass-end" aria-hidden="true"></i></div>
<div class="timeline-panel" style="border-left:10px solid #43AC6A;">
<div class="timeline-heading">
<h5 class="timeline-title">SCI</h5>
<div class="timeline-body">
<p>Ends</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
18 August,2020
</small>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-badge danger">
<i class="fa fa-trophy" aria-hidden="true"></i></div>
<div class="timeline-panel" style="border-right:10px solid #F04124;">
<div class="timeline-heading">
<h5 class="timeline-title">Results Out</h5>
<div class="timeline-body">
<p>Declartion of results</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
1 September,2020
</small>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<!-- <ul class="timeline">
<li>
<div class="timeline-badge primary">
<i class="fa fa-check"></i>
</div>
<div class="timeline-panel" style="border-left:10px solid #008CBA;">
<div class="timeline-heading">
<h5 class="timeline-title">Project Submission</h5>
</div>
<div class="timeline-body">
<p>Begins</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
11:59 pm 15 May,2020
</small>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-badge success">
<i class="fa fa-check"></i>
</div>
<div class="timeline-panel" style="border-right:10px solid #43AC6A; word-wrap:break-word;">
<div class="timeline-heading">
<h5 class="timeline-title">Participant/Mentor Registration</h5>
</div>
<div class="timeline-body">
<p>Begins</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
11:59 pm 20 May,2020
</small>
</div>
</div>
</li>
<li>
<div class="timeline-badge danger">
<i class="fa fa-hand-paper-o" aria-hidden="true"></i>
</div>
<div class="timeline-panel" style="border-left:10px solid #F04124; ">
<div class="timeline-heading">
<h5 class="timeline-title">Project Submission</h5>
<div class="timeline-body">
<p>Ends</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
11:59 pm 31 May,2020
</small>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-badge warning">
<i class="fa fa-hand-paper-o" aria-hidden="true"></i>
</div>
<div class="timeline-panel" style="border-right:10px solid #E99002; word-wrap:break-word;">
<div class="timeline-heading">
<h5 class="timeline-title">Participant/Mentor Registration</h5>
<div class="timeline-body">
<p>Ends</p>
<small class="text-muted">
<i class="fa fa-clock-o"></i>
11:59 pm 9 June,2020
</small>
</div>
</div>
</li>
<li>
<div class="timeline-badge info">
<i class="fa fa-file-pdf-o"></i></div>
</li>
</ul> -->
</div>
</section>
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials">
<div class="container">
<header class="section-header">
<h3>Steps To Begin</h3>
</header>
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="owl-carousel testimonials-carousel wow fadeInUp">
<div class="testimonial-item">
<h3>Step 1:</h3>
<p>
<h5>Apply:</h5>Interested students fill the application form with relevant details.
</p>
</div>
<div class="testimonial-item">
<h3>Step 2:</h3>
<p>
<h5>Code:</h5> Accepted students choose their projects and spend the coding period with guidance from a
mentor.
</p>
</div>
<div class="testimonial-item">
<h3>Step 3:</h3>
<p>
<h5>Share:</h5>Submit the code by committing, and yes you are done!!.
</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Testimonials Section -->
<section id="sponsors">
<div class="container">
<header class="section-header">
<h3>Our Sponsors</h3>
</header>
<div class="partners">
<div class="sponsor-block">
<h4>Community Partner</h4>
<div class="sponsors">
<a href="https://commudle.com/">
<img class="sponsor-img" src="https://commudle.com/assets/images/commudle-logo192.png"></a>
<a href="https://twitter.com/gdg_nd?lang=en">
<img src="https://secure.meetupstatic.com/photos/event/c/6/2/8/600_460370728.jpeg"></a>
<a href="https://dockship.io/">
<img class="sponsor-img"
src="https://gblobscdn.gitbook.com/spaces%2F-LqZ6CHwBrp1meuf2IH1%2Favatar.png?alt=media">
</a>
</div>
</div>
<div class="sponsor-block">
<h4>Learning Partner</h4>
<div class="sponsors">
<a href="https://codingblocks.com/">
<img class="sponsor-img"
src="https://marketing-image-production.s3.amazonaws.com/uploads/0ba295b66f676a965ba15303344f9e553b9e5f54381820d3752eee997e0c5d97cec5dbd68de0edd07b62c69b5d6b11ed15dd4655fef05607afd6a9deab3e1cc1.png"></a>
</div>
</div>
<div class="sponsor-block">
<h4>Patrons</h4>
<div class="sponsors">
<a href="https://cloudsploit.com/">
<img class="sponsor-img" src="https://cloudsploit.com/images/logos/cloudsploit_by_aqua_A02.png"></a>
<a href="https://www.voiceflow.com/">
<img class="sponsor-img"
src="https://uploads-ssl.webflow.com/5bddf05642686caf6d17eb58/5cf52c37420081eec94ed662_VF_Logo_Black.png"></a>
<a href="https://balsamiq.com/">
<img src="https://balsamiq.com/assets/company/brandassets/balsamiq-logo-screen.png"></a>
<a href="https://givemycertificate.com/">
<img class="sponsor-img" src="https://givemycertificate.com/images/gmc_logo.png"></a>
</div>
</div>
</div>
<div class="center-it">
<a class="btn btn-primary btn-lg sp-btn"
href="https://docs.google.com/forms/d/1EvhKxub2kroqk4s8KlBpmLwXE4vTc3-wy5Xa8qK5YTM/edit"
role="button">Sponsor
Us</a>
</div>
</div>
</section>
<!-- ======= F.A.Q Section ======= -->
<section id="faq" class="faq wow fadeInUp">
<div class="container">
<header class="section-header">
<h3>Frequently Asked Questions</h3>
</header>
<ul id="faq-list" class="wow fadeInUp">
<li>
<a data-toggle="collapse" class="collapsed" href="#faq1">Will a beginner, with absolutely no knowledge of
github, gain anything fruitful? <i class="ion-android-remove"></i></a>
<div id="faq1" class="collapse" data-parent="#faq-list">
<p>
Yeah, definitely! SCI is meant to assist the beginners grow in the field of development. We'll have
distinct projects appropriate both for beginners as well as the accolades and thereby we’ll make sure
that each and every participant gets to learn something new from the projects he or she is contributing
for.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq2" class="collapsed">Is there any registration fee? <i
class="ion-android-remove"></i></a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p>
No, there is no registration fees for participation. It is absolutely free of cost.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq3" class="collapsed">What will be prizes and reward? <i
class="ion-android-remove"></i></a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p>
All the participants with successful participation will be rewarded with some cool swags and perks.<br>
All participants with at least one PR merged will receive digital certificates.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq4" class="collapsed">How will we receive the prizes and certificate? <i
class="ion-android-remove"></i></a>
<div id="faq4" class="collapse" data-parent="#faq-list">
<p>
We’ll be providing all the participants with the digital certificate.T-shirt and swags to all the
concerned students will be sent to their address within 1-2 month.We’ll ask for the address details via
an email after the conclusion of the event.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq5" class="collapsed">By what time will the result be out? <i
class="ion-android-remove"></i></a>
<div id="faq5" class="collapse" data-parent="#faq-list">
<p>
The results will be declared by 1 September 2020 right after the conclusion of the event.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq6" class="collapsed">What minimum conditions should the project satisfy?
<i class="ion-android-remove"></i></a>
<div id="faq6" class="collapse" data-parent="#faq-list">
<p>
There are no such conditions that the projects need to satisfy. The mentors can propose the idea in any
field that they specifically expertise in.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq7" class="collapsed">From where do we need to start being a beginner as
of now so as contribute properly in the projects? <i class="ion-android-remove"></i></a>
<div id="faq7" class="collapse" data-parent="#faq-list">
<p>
We’ll be providing you with the links on our official website to start with Github and various other
development to make sure that everyone is able to aptly contribute for the projects.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq8" class="collapsed">What is the criterion for selection as a
participant? <i class="ion-android-remove"></i></a>
<div id="faq8" class="collapse" data-parent="#faq-list">
<p>
This program is for beginners to get started with open source. The only criterion for selection are your
dedication and enthusiasm to contribute to open source.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq9" class="collapsed">What is Open Source Software(OSS)? <i
class="ion-android-remove"></i></a>
<div id="faq9" class="collapse" data-parent="#faq-list">
<p>
Open Source Software is a computer software whose source code is made publicly available for
modification and enhancements. It is released under various licenses like BSD, MIT etc.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq10" class="collapsed">How do I get started? <i
class="ion-android-remove"></i></a>
<div id="faq10" class="collapse" data-parent="#faq-list">
<p>
First and foremost, you must choose a programming language of your choice. Once you are done with
selecting a programming language, search for a project that is interesting to you.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq11" class="collapsed">Why contribute to open source project? <i
class="ion-android-remove"></i></a>
<div id="faq11" class="collapse" data-parent="#faq-list">
<p>
There are a lot of enthusiasts who simply believe that code should be open. They're idealists who want
to make the world a better place, and it drives them to contribute code. The desire to share can be a
powerful motivator.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq12" class="collapsed">How to find the right project? <i
class="ion-android-remove"></i></a>
<div id="faq12" class="collapse" data-parent="#faq-list">
<p>
Shortlist<br>
Ask questions<br>
Evaluate your options<br>
From Project Idea to Project Plan<br>
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq13" class="collapsed">Any age limit for participation? <i
class="ion-android-remove"></i></a>
<div id="faq13" class="collapse" data-parent="#faq-list">
<p>
No, there is no age limit for participation in SCI. It is open for all.
</p>
</div>
</li>
<li>
<a data-toggle="collapse" href="#faq14" class="collapsed">Is it possible for someone to be a mentor as well
as a participant?<i class="ion-android-remove"></i></a>
<div id="faq14" class="collapse" data-parent="#faq-list">
<p>
No one can only participate as a mentor or participant, but not both.
</p>
</div>
</li>
</ul>
</div>
</section><!-- End F.A.Q Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer" class="section-bg">
<div class="footer-top">
<div class="container">
<h3>Student Code-In</h3>
<div class="footer-links">
<h4>Contact Us</h4>
<strong>Email: </strong><a
href="mailto:<nowiki>[email protected]?subject=Query link">[email protected]</a><br>
</p>
</div>
<div class="social-links">
<a href="https://twitter.com/studentcodein" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/company/43204229/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/StudentCode-in" class="github"><i class="fa fa-github"></i></a>
<a href="https://t.me/scodein" class="telegram"><i class="fa fa-telegram"></i></a>
</div>
</div>
</div>
<br>
<br>
</footer><!-- End Footer -->
<a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/counterup/counterup.min.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/mobile-nav/mobile-nav.js"></script>
<script src="assets/vendor/wow/wow.min.js"></script>
<script src="assets/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="assets/vendor/waypoints/jquery.waypoints.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>