forked from opencodeiiita/previous-websites
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
952 lines (776 loc) · 42.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
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
939
940
941
942
943
944
945
946
947
948
949
950
951
952
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!--- basic page needs
================================================== -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-131397303-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-131397303-1');
</script>
<meta charset="utf-8">
<title>OpenCode'19</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> -->
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/animate.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<script src="js/particles.js" defer="defer"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script> <!-- stats.js lib -->
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="newfavicon.ico" type="image/x-icon">
<link rel="icon" href="newfavicon.ico" type="image/x-icon">
<style>
@media (max-width: 600px) {
#chotu {
padding-top: 30px;
height: 50vh;
width: 50vw;
}
#chotu1 {
margin-top: 17px;
font-size: 44px;
}
#chotucol2 {
font-size: 2rem;
/* padding-right: 50px; */
/* padding-top: 150px; */
margin: auto;
}
#chotupara {
font-size: 1.5rem;
/* padding-right: 50px; */
/* color: red; */
margin: auto;
}
/* #chotuimg{
height: 213px;
width: 203px;
} */
}
</style>
</head>
<body id="top">
<!-- header
================================================== -->
<header class="s-header">
<!-- <div class="header-logo">
<a class="site-logo" href="index.html">
<img src="images/logo.svg" alt="Homepage">
</a>
</div> end header-logo -->
<nav class="header-nav">
<a href="#0" class="header-nav__close" title="close"><span>Close</span></a>
<div class="header-nav__content">
<h3 style="color: #00a9fd">OpenCode'19</h3>
<ul class="header-nav__list">
<li class="current"><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#register" title="register">Register</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#services" title="services">Our Goals</a></li>
<li><a class="smoothscroll" href="#works" title="works">Previous Projects</a></li>
<li><a class="smoothscroll" href="#contact" title="contact">Contact</a></li>
</ul>
<p>Welcome to OpenCode'19! Your journey into the world of open-source development begins here.</p>
<!-- <ul class="header-nav__social">
<li>
<a href="#0"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-behance"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-dribbble"></i></a>
</li>
</ul> -->
</div> <!-- end header-nav__content -->
</nav> <!-- end header-nav -->
<a class="header-menu-toggle" href="#0">
<span class="header-menu-icon"></span>
</a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home target-section" data-parallax="scroll" data-image-src="" data-position-y=top>
<!-- <div class="shadow-overlay"></div> -->
<div id="particles-js" class="home-content">
<!-- particles.js container -->
<!-- stats - count particles -->
<!-- particles.js lib - https://github.com/VincentGarreau/particles.js -->
<script src="http://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<!-- stats.js lib -->
<div class="animated fadeIn github">
<img src="images/GitHub.png"><br></div>
<div class="animated fadeIn presents">
<p>Presents</p>
</div>
<div id="chotu" class="animated fadeInUp logo">
<img src="images/Logo1.png">
</div>
<div id="chotu1" class="animated fadeIn title">
OpenCode '19</div>
<!--
<div class="animated fadeIn delay-3s buttons">
<div class="ui secondary button"><a href="">
<i class="github icon"></i>
View it on Github</a>
</div>
<div class="ui facebook button"><a href="">
<i class="facebook icon"></i>
Follow on Facebook</a>
</div>
</div>
</div> <!-- end home-content -->
<!-- <ul class="home-sidelinks">
<li><a class="smoothscroll" href="#about">About<span>who we are</span></a></li>
<li><a class="smoothscroll" href="#services">Services<span>what we do</span></a></li>
<li><a class="smoothscroll" href="#contact">Contact<span>get in touch</span></a></li>
</ul> end home-sidelinks -->
<!-- <ul class="home-social">
<li class="home-social-title">Follow Us</li>
<li><a href="#0">
<i class="fab fa-facebook"></i>
<span class="home-social-text">Facebook</span>
</a></li>
<li><a href="#0">
<i class="fab fa-twitter"></i>
<span class="home-social-text">Twitter</span>
</a></li>
<li><a href="#0">
<i class="fab fa-linkedin"></i>
<span class="home-social-text">LinkedIn</span>
</a></li>
</ul> end home-social -->
</section> <!-- end s-home -->
<!-- ====================REGISTER===================================== -->
<div class="ui stackable grid container" id="register" style="margin-top: 100px;">
<div class="two wide column"></div>
<div class="six wide column" style="text-align:center">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdV63tSCSey25-CrDljYdi5VkcwhiGKSopWF5X-_V5GSCQuuA/viewform?usp=sf_link"
target="_blank">
<div class="ui animated massive button" style="background: linear-gradient(to right, #00a9fd, #006bd1); color: white;"
tabindex="0">
<div class="visible content">Participant Registration</div>
<div class="hidden content">
<i class="right arrow icon"></i>
</div>
</div>
</a>
</div>
<div class="six wide column" style="text-align:center">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSeUJOEGb_CrG-gfwHttqQlXA3m7yjuhy5bdTHgDfrIrRNiRzA/viewform?usp=sf_link"
target="_blank">
<div class="ui animated massive button" style="background: linear-gradient(to right, #00a9fd, #006bd1); color: white;"
tabindex="0">
<div class="visible content">Mentor Registration</div>
<div class="hidden content">
<i class="right arrow icon"></i>
</div>
</div>
</a>
</div>
<div class="two wide column"></div>
<!-- <div class="ui animated blue massive button" tabindex="0">
<div class="visible content">Participant Registration</div>
<div class="hidden content">
<i class="right arrow icon"></i>
</div>
</div>
<div class="ui animated blue massive button" tabindex="0">
<div class="visible content">Mentor Registration</div>
<div class="hidden content">
<i class="right arrow icon"></i>
</div>
</div> -->
</div>
<!-- about
================================================== -->
<section id='about' class="s-about">
<div class="row section-header" data-aos="fade-up">
<div class="col-full">
<!-- <h3 class="subhead">Who We Are</h3> -->
<h1 class="display-1" id="about-header">About</h1>
</div>
</div> <!-- end section-header -->
<!-- <div class="row" data-aos="fade-up">
<div class="col-full">
<p class="lead">
Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Donec rutrum congue leo eget malesuada. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse.
</p>
</div>
</div> -->
<div class="row">
<div class="about-process process block-1-2 block-tab-full">
<div class="process__vline-left"></div>
<div class="process__vline-right"></div>
<div class="col-block process__col" data-item="1" data-aos="fade-up">
<div class="process__text">
<h4>Scoring Criteria</h4>
<p>Each project will have issues open in it of varying difficulty and each issue will have
points associated with it as below:</p>
<ul>
<li>Rookie: 10 points</li>
<li>Skilled: 20 points</li>
<li>Advanced: 30 points</li>
<li>Expert: 50 points</li>
</ul>
</div>
</div>
<div class="col-block process__col" data-item="2" data-aos="fade-up">
<div class="process__text">
<h4>How this works</h4>
<ul>
<li>Participants are required to solve the issues and earn points.</li>
<li>At the end of competition, winner will be declared from top 5 by judging the quality of
issues solved by them.<strong>So the participant with the most points need not be the
winner.</strong></li>
<li>Projects registered for the event can be solved to earn points. All of them can be
found at OpenCode Organisation with label opencode.</li>
</ul>
</div>
</div>
<!--div class="col-block process__col" data-item="3" data-aos="fade-up">
<div class="process__text">
<h4>Prizes</h4>
<ul>
<li>Grand prize winner (selected from the TOP 5 by the organizers) : Cash prize worth 2.5k, T-shirt, stickers and Certficate.</li>
<li>Top 5 Participants based on points: T Shirts, stickers, Certificates.</li>
<li>Participant with most points : Cash prize of 1k</li>
<li>Participant with second most points : Cash prize of Rs.500</li>
<li>Every participant with 4 PR merged will be awarded a digital participation certificate.</li>
<li>Top 5 will get direct admission to Hack In the North</li>
<li>Amazon gift voucher worth Rs. 300/- will be presented to one lucky participant who do the most social media outreach using facebook, twitter or any other platform.</li>
</ul>
</div>
</div>
<div class="col-block process__col" data-item="4" data-aos="fade-up">
<div class="process__text">
<h4>Important Points</h4>
< <p>Prizes (Cash prizes as well as Goodies) will be awarded in the following categories:</p>>
<ul>
<li>All mentors with 4 good PR's merged will get stickers and certificate.</li>
<li>Mentors as chosen by the organisers will be given passes to attend Aparoksha, the annual techfest of IIIT Allahabad.</li>
<li>There will be a repo only for female developers, for the same there will be a special prize.</li>
<li>Referral points will be given to any participant only for first 20 days.</li>
<li>A participant at anytime can have 2 issues assigned.If there is no activity on the issue for 3 days then the issue will unassigned and available to all.</li>
<li>For IIITA first year students, it is necessary to score 100 points to be eligible for FOSS Wing interviews.</li>
</ul>
</div>
</div-->
</div> <!-- end process -->
</div> <!-- end about-stats -->
</section> <!-- end s-about -->
<!-- services
================================================== -->
<section id='services' class="s-services light-gray">
<div class="row section-header" data-aos="fade-up">
<div class="col-full" id="goal-head">
<!-- <h3 class="subhead">What We Do</h3> -->
<h1 class="display-1" id="goals-head">Our Goals</h1>
</div>
</div> <!-- end section-header -->
<div class="row" data-aos="fade-up">
<div class="col-full">
<p class="lead">
OpenCode was started with the aim to get more people interested in the magical world of opensource.
</p>
</div>
</div> <!-- end about-desc -->
<div class="row services-list block-1-2 block-m-1-2 block-tab-full">
<div class="col-block service-item" data-aos="fade-up" style="padding-bottom: 40px;">
<div class="service-icon service-icon--web-design">
<i class="icon-earth"></i>
</div>
<div class="service-text">
<h3 class="h4" style="padding-top: 10px;">Awareness</h3>
<p>Increase awareness about the world of open source.</p>
</div>
</div>
<div class="col-block service-item " data-aos="fade-up" style="padding-bottom: 40px;">
<div class="service-icon service-icon--brand-identity">
<i class="icon-tv"></i>
</div>
<div class="service-text">
<h3 class="h4" style="padding-top: 10px;">GitHub</h3>
<p>Get people started with Git and GitHub.</p>
</div>
</div>
<div class="col-block service-item" data-aos="fade-up" style="padding-bottom: 40px;">
<div class="service-icon service-icon--illustration">
<i class="icon-group"></i>
</div>
<div class="service-text">
<h3 class="h4" style="padding-top: 10px;">Community Building</h3>
<p>Build a community of developers.</p>
</div>
</div>
<!-- <div class="col-block service-item" data-aos="fade-up">
<div class="service-icon service-icon--product-strategy">
<i class="icon-cube"></i>
</div>
<div class="service-text">
<h3 class="h4" style="padding-top: 10px;">Product Strategy</h3>
<p>Nemo cupiditate ab quibusdam quaerat impedit magni. Earum suscipit ipsum laudantium.
Quo delectus est. Maiores voluptas ab sit natus veritatis ut. Debitis nulla cumque veritatis.
Sunt suscipit voluptas ipsa in tempora esse soluta sint.
</p>
</div>
</div>
-->
<div class="col-block service-item" data-aos="fade-up">
<div class="service-icon service-icon--ui-design">
<i class="icon-window"></i>
</div>
<div class="service-text">
<h3 class="h4" style="padding-top: 10px;">Improve Skills</h3>
<p>Help mentors to improve their guiding skills.</p>
</div>
</div>
<!-- <div class="col-block service-item" data-aos="fade-up">
<div class="service-icon service-icon--mobile-dev">
<i class="icon-lego-block"></i>
</div>
<div class="service-text">
<h3 class="h4" style="padding-top: 10px;">Mobile Development</h3>
<p>Nemo cupiditate ab quibusdam quaerat impedit magni. Earum suscipit ipsum laudantium.
Quo delectus est. Maiores voluptas ab sit natus veritatis ut. Debitis nulla cumque veritatis.
Sunt suscipit voluptas ipsa in tempora esse soluta sint.
</p>
</div>
</div>
-->
</div> <!-- end services-list -->
</section> <!-- end s-services -->
<!-- works
================================================== -->
<section id='works' class="s-works">
<div class="row section-header" data-aos="fade-up">
<div class="col-full" id="work-head">
<!-- <h3 class="subhead">Featured Works</h3> -->
<h1 class="display-1" id="works-head">Projects from OpenCode'18</h1>
</div>
</div> <!-- end section-header -->
<div class="row masonry-wrap">
<div class="masonry">
<div class="masonry__brick" data-aos="fade-up" style="padding: 5px;">
<div class="item-folio">
<div class="item-folio__thumb">
<a class="thumb-link" data-size="1050x700">
<img src="images/portfolio/pd1.png" srcset="images/portfolio/pd1.png 1x" alt="">
</a>
</div>
<!-- <a href="https://google.com">please chal jaa</a> -->
<div class="item-folio__text">
<h3 class="item-folio__title">
ProDesigner
</h3>
<p class="item-folio__cat">
A super cool collection of CSS tasks.
</p>
</div>
<a href="https://github.com/opencode18/ProDesigner" target="_blank" id="prodesigner" class="item-folio__project-link">
Project Link
</a>
<!-- <div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div> -->
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up" style="padding: 5px;">
<div class="item-folio">
<div class="item-folio__thumb">
<a class="thumb-link" data-size="1050x700">
<img src="images/portfolio/apkfinal.jpg" srcset="images/portfolio/apkfinal.jpg 1x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Aparoksha'18 Website
</h3>
<p class="item-folio__cat">
Official website for Aparoksha'18
</p>
</div>
<a href="https://github.com/GeekHaven/Aparoksha-18" class="item-folio__project-link" id="aparoksha">
Project Link
</a>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up" style="padding: 5px;">
<div class="item-folio">
<div class="item-folio__thumb">
<a class="thumb-link" data-size="1050x700">
<img src="images/portfolio/ld.png" srcset="images/portfolio/ld.png 1x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Long Drive
</h3>
<p class="item-folio__cat">
A fun CSS side project.
</p>
</div>
<a href="https://github.com/CosmicCoder96/longDrive" class="item-folio__project-link" id="longdrive">
Project Link
</a>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up" style="padding: 5px;">
<div class="item-folio">
<div class="item-folio__thumb">
<a class="thumb-link" data-size="1050x700">
<img src="images/portfolio/lcv.png" srcset="images/portfolio/lcv.png 1x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Lucid CV
</h3>
<p class="item-folio__cat">
A simple CV maker built using Node.js
</p>
</div>
<a href="https://github.com/aswinzz/LucidCV" class="item-folio__project-link" id="lucidcv">
Project Link
</a>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up" style="padding: 5px;">
<div class="item-folio">
<div class="item-folio__thumb">
<a class="thumb-link" data-size="1050x700">
<img src="images/portfolio/hox.png" srcset="images/portfolio/hox.png 1x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
HoxNox
</h3>
<p class="item-folio__cat">
A webapp made in Django to generate a portfolio.
</p>
</div>
<a href="https://github.com/Anupam-dagar/Portfolio-Generator" class="item-folio__project-link"
id="hoxnox">
Project Link
</a>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up" style="padding: 5px;">
<div class="item-folio">
<div class="item-folio__thumb">
<a class="thumb-link" data-size="1050x700">
<img src="images/portfolio/opn.png" srcset="images/portfolio/opn.png 1x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
OpenNews
</h3>
<p class="item-folio__cat">
A simple website built using Vue.js which displays the top 5 news from various news
sources.
</p>
</div>
<a href="https://github.com/opencode18/OpenNews" class="item-folio__project-link" id="opennews">
Project Link
</a>
</div> <!-- end item-folio -->
</div> <!-- end masonry__brick -->
</div> <!-- end masonry -->
</div> <!-- end masonry-wrap -->
<div class="testimonials-wrap" data-aos="fade-up">
<div class="row">
<div class="col-full testimonials-header">
<h2 class="h1" id="testimonials-head" style="color: #00a9fd;">Testimonials</h2>
</div>
</div>
<div class="row testimonials">
<div class="col-full testimonials__slider">
<div class="testimonials__slide">
<img src="images/avatars/jc.jpg" alt="Author image" class="testimonials__avatar">
<p> People used to take any issue that comes their way, be it something they even haven’t heard
about. I guess, that’s the beauty of OpenCode, it helps us let go of our fear of tackling
problems without thinking about whether we can solve them or not.</p>
<div class="testimonials__author">
Jigar Chavada
<span>OpenCode'18, Overall Winner</span><span><a href="https://medium.com/@chavada.jigar.3/my-experience-of-opencode18-4433b6eaf823"
target="_blank">Read the full blog</a></span>
</div>
</div> <!-- end testimonials__slide -->
<div class="testimonials__slide">
<img src="images/avatars/vp.jpg" alt="Author image" class="testimonials__avatar">
<p>Before Opencode I had a vague understanding of git and some basic knowledge of Python and
Web development. But towards the end of it I got introduced to many technologies and coding
practices. Thus, I can safely say that I have taken a huge step towards excelling as a
developer.</p>
<div class="testimonials__author">
Vishal Pani
<span>OpenCode'18, Top Scorer</span><span><a href="https://medium.com/@panivishal17/my-journey-with-opencode18-5336ea8c9f07"
target="_blank">Read the full blog</a></span>
</div>
</div> <!-- end testimonials__slide -->
<div class="testimonials__slide">
<img src="images/avatars/rk.jpeg" alt="Author image" class="testimonials__avatar">
<!-- <p>I had joined GitHub just two weeks before OpenCode had started. Initially, I felt quite underconfident while taking up the issues. I went from being that underconfident guy to the guy who’s now comfortable enough to explore the beautiful world of open-source.</p> -->
<div class="testimonials__author">
Rahul Arulkumaran
<span>OpenCode'18, 2nd Position</span><span><a href="#" target="_blank">Read the full blog</a></span>
</div>
</div> <!-- end testimonials__slide -->
<div class="testimonials__slide">
<img src="images/avatars/rm.jpg" alt="Author image" class="testimonials__avatar">
<p>It was a great experience for me. I enjoyed a lot doing different things for the competition
like opening issues, solving them, claiming issues opened by the organizers, creating pull
requests. It gave me real happiness whenever my PR was merged.</p>
<div class="testimonials__author">
Ritika Motwani
<span>OpenCode'18, Special Girls Prize</span><span><a href="https://medium.com/my-experience-with-opencode-2018/my-experience-of-opencode-2018-7a26415da76"
target="_blank">Read the full blog</a></span>
</div>
</div> <!-- end testimonials__slide -->
<div class="testimonials__slide">
<img src="images/avatars/eb.jpg" alt="Author image" class="testimonials__avatar">
<p>I had joined GitHub just two weeks before OpenCode had started. Initially, I felt quite
underconfident while taking up the issues. I went from being that underconfident guy to the
guy who’s now comfortable enough to explore the beautiful world of open-source.</p>
<div class="testimonials__author">
Ekansh Bansal
<span>OpenCode'18, Top Contributor</span><span><a href="https://medium.com/@ekanshbansal/my-experience-with-opencode18-5271f9d10d44"
target="_blank">Read the full blog</a></span>
</div>
</div> <!-- end testimonials__slide -->
<div class="testimonials__slide">
<img src="images/avatars/ag.jpg" alt="Author image" class="testimonials__avatar">
<!-- <p>I had joined GitHub just two weeks before OpenCode had started. Initially, I felt quite underconfident while taking up the issues. I went from being that underconfident guy to the guy who’s now comfortable enough to explore the beautiful world of open-source.</p> -->
<p>I started with adding myself as contestant in opencode collaborative website and then the
journey to contribute more and more started. OpenCode ended with introducing me to new and
exciting stuff like loaders, cool libraries like particle.js, making game with the help of
javascript and many more things.</p>
<div class="testimonials__author">
Ananya Agrawal
<span>OpenCode'18, Top Contributor</span><span><a href="https://medium.com/@ananyaagrawal125/experience-with-opencode-18-4df353b93e95"
target="_blank">Read the full blog</a></span>
</div>
</div> <!-- end testimonials__slide -->
</div> <!-- end testimonials__slider -->
</div> <!-- end testimonials -->
</div> <!-- end testimonials-wrap -->
</section> <!-- end s-works -->
<!-- stats
================================================== -->
<!-- <section id="stats" class="s-stats">
<div class="row stats block-1-4 block-m-1-2 block-mob-full" data-aos="fade-up">
<div class="col-block stats__col ">
<div class="stats__count">129</div>
<h5>Awards Received</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">1507</div>
<h5>Cups of Coffee</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">108</div>
<h5>Projects Completed</h5>
</div>
<div class="col-block stats__col">
<div class="stats__count">103</div>
<h5>Happy Clients</h5>
</div>
</div>
</section> -->
<!-- Sponsors -->
<section data-section="sponsor">
<div class="sponsor-container">
<div class="sponsor-heading">
<h2 style="font-weight: bold">SPONSORS</h2>
</div>
</div>
<div class="sponsors">
<div class="sponsor-1">
<a href="https://github.com" target="_blank">
<img src="images/sponsors/code.png">
</a>
</div>
<div class="sponsor-2" style="margin-left: auto; margin-right: auto">
<a href="https://zulipchat.com/" target="_blank">
<img src="images/sponsors/zulip-logo.png">
</a>
</div>
</div>
</section>
<!-- contact
================================================== -->
<section id="contact" class="s-contact">
<!-- <div class="row section-header" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead subhead--light">Contact Us</h3>
<h1 class="display-1 display-1--light">Get in touch and let's make something great together. Let's turn your idea on an even greater product.</h1>
</div>
</div> -->
<!-- <div class="row">
<div class="col-full contact-main" data-aos="fade-up">
<p>
<a href="mailto:#0" class="contact-email">[email protected]</a>
<span class="contact-number">+1 (917) 123 456 / +1 (917) 333 987</span>
</p>
</div>
</div> -->
<div class="row">
<!-- <div class="col-five tab-full contact-secondary" data-aos="fade-up">
<h3 class="subhead subhead--light">Where To Find Us</h3>
<p class="contact-address">
1600 Amphitheatre Parkway<br>
Mountain View, CA<br>
94043 US
</p>
</div> -->
<div class="col-five tab-full contact-secondary" data-aos="fade-up">
<h3 class="subhead subhead--light">Reach Out</h3>
<ul class="contact-social">
<li>
<a href="https://www.facebook.com/opencodeiiita/" target="_blank"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="mailto:geekhaven.iiita.ac.in"><i class="fa fa-envelope"></i></a>
</li>
<li>
<a href="https://github.com/opencodeiiita" target="_blank"><i class="fab fa-github"></i></a>
</li>
</ul> <!-- end contact-social -->
<!-- <div class="contact-subscribe">
<form id="mc-form" class="group mc-form" novalidate="true">
<input type="email" value="" name="EMAIL" class="email" id="mc-email" placeholder="Email Address" required="">
<input type="submit" name="subscribe" value="Subscribe">
<label for="mc-email" class="subscribe-message"></label>
</form>
</div> -->
</div> <!-- end contact-secondary -->
</div> <!-- end row -->
<div class="row">
<div class="col-full cl-copyright">
<span>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©
<script>document.write(new Date().getFullYear());</script> All rights reserved | Made with <i style="color: red;"
class="fa fa-heart" aria-hidden="true"></i> by <span style="color:white">Team OpenCode.</span>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></span>
</div>
</div>
<div class="cl-go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="icon-arrow-up" aria-hidden="true"></i></a>
</div>
</section> <!-- end s-contact -->
<!-- photoswipe background
================================================== -->
<!-- <div aria-hidden="true" class="pswp" role="dialog" tabindex="-1">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title=
"Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title=
"Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button> <button class="pswp__button pswp__button--arrow--right" title=
"Next (arrow right)"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div> end photoSwipe background -->
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader">
</div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script>
var btn1 = $("#prodesigner");
var btn2 = $("#aparoksha");
var btn3 = $("#longdrive");
var btn4 = $("#hoxnox");
var btn5 = $("#lucidcv");
var btn6 = $("#opennews");
btn1.click(function () {
window.open('https://github.com/opencode18/ProDesigner', '_blank');
})
btn2.click(function () {
window.open('https://github.com/GeekHaven/Aparoksha-18', '_blank');
})
btn3.click(function () {
window.open('https://github.com/CosmicCoder96/longDrive', '_blank');
})
btn4.click(function () {
window.open('https://github.com/Anupam-dagar/Portfolio-Generator', '_blank');
})
btn5.click(function () {
window.open('https://github.com/aswinzz/LucidCV', '_blank');
})
btn6.click(function () {
window.open('https://github.com/opencode18/OpenNews', '_blank');
})
</script>
</body>
</html>
<!-- <div class="col-sm-3">
<img src="images/wwcode.png" class="img-responsive">
<a href="https://www.womenwhocode.com/"><h2 class="text-center" style="color: #f73e36;font-weight: 600;">Media Partner</h2></a>
</div>
<div class="col-sm-3">
<a href="https://github.com/"><img src="images/GitHubblack.png" class="img-responsive github-black"></a>
</div>
<div class="col-sm-3">
<a href="https://zulipchat.com/"><img src="images/zulip.png" class="img-responsive zulip"></a>
</div>
<div class="col-sm-3">
<img src="images/go-students.png" class="img-responsive go-students">
<a href="https://gostudent.github.io/"><h2 class="text-center go-students" style="color: #f73e36;font-weight: 600;">Community Partner</h2></a>
</div>
</div>
</div> -->