-
Notifications
You must be signed in to change notification settings - Fork 228
/
index.html
1734 lines (1614 loc) · 74.1 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
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<style>
#preloader {
background: #000000 url(././assets/img/gifs/OSCode.gif) no-repeat center
center;
background-size: 60%;
height: 100vh;
width: 100%;
position: fixed;
z-index: 999999;
}
html,
body {
scroll-behavior: smooth;
}
</style>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>OS-CODE</title>
<!-- Nav Bar Theme -->
<meta name="theme-color" content="#0E034D">
<meta name="msapplication-navbutton-color" content="#04C8FF">
<meta name="msapplication-TileColor" content="#0E034D">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#0E034D">
<meta
name="description"
content="Multi-College Tech Community empowering students to Learn in Public. Join us to connect with like-minded individuals and foster campus learning culture."
/>
<link rel="canonical" href="/index.html" />
<!-- Essential Meta Tags -->
<meta name="title" content="OS Code" />
<meta name="language" content="en" />
<meta name="author" content="OS Code" />
<meta name="robots" content="index, follow" />
<meta name="revisit-after" content="7 days" />
<meta
name="keywords"
content="os code, tech community, engage, upskilling, workshops, seminars, hackathons, projects, education, tech support, lifelong learning"
/>
<!-- Twitter -->
<meta property="twitter:url" content="http://www.oscode.co.in/" />
<meta property="twitter:title" content="OS Code" />
<meta
property="twitter:description"
content="Welcome to OS Code, We empowering college students through a multi-college tech community to learn publicly and connect with like-minded individuals."
/>
<!-- Favicons -->
<link href="./assets/img/logo.webp" rel="icon" />
<!-- Google Fonts -->
<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=Kanit:wght@500&family=Montserrat&family=Noto+Serif&family=Prompt:wght@500&family=Rajdhani:wght@500&display=swap"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link href="vendor/aos/aos.css" rel="stylesheet" />
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet" />
<link href="vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link href="vendor/glightbox/css/glightbox.min.css" rel="stylesheet" />
<link href="vendor/remixicon/remixicon.css" rel="stylesheet" />
<link href="vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Bootstrap 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/js/bootstrap.bundle.min.js"
integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct"
crossorigin="anonymous"
></script>
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<link href="assets/css/client.css" rel="stylesheet" />
<link href="assets/css/counts.css" rel="stylesheet" />
<link href="assets/css/about.css" rel="stylesheet" />
<link href="assets/css/join_us.css" rel="stylesheet" />
<link href="assets/css/faq.css" rel="stylesheet" />
<link rel="stylesheet" href="./contact/contactstyle.css">
<link href="assets/css/contact.css" rel="stylesheet" />
<link href="assets/css/gallery.css" rel="stylesheet" />
<link href="assets/css/contactform.css" rel="stylesheet">
<!-- <link href="../assets/css/style.css" rel="stylesheet" /> -->
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/37377042d1.js"
crossorigin="anonymous"
></script>
<!-- Why Choose Us button css -->
<link rel="stylesheet" href="./assets/css/whychooseusbutton.css" />
<!-- for overriding the nav css -->
<link rel="stylesheet" href="./assets/css/override.css" />
<!--Start of Tawk.to Script-->
<!--<script type="text/javascript">
var Tawk_API = Tawk_API || {},
Tawk_LoadStart = new Date();
(function () {
var s1 = document.createElement("script"),
s0 = document.getElementsByTagName("script")[0];
s1.async = true;
s1.src = "https://embed.tawk.to/649d525d94cf5d49dc607f94/1h4gb6q2s";
s1.charset = "UTF-8";
s1.setAttribute("crossorigin", "*");
s0.parentNode.insertBefore(s1, s0);
})();
</script>-->
<!-- End of Tawk.to Script-->
</head>
<body onload="myFunction()">
<div id="preloader"></div>
<!-- ======= Header ======= -->
<header
id="header"
class="glassmorphic fixed-top d-flex align-items-center newFlex"
>
<div class="mainContainer container d-flex align-items-center">
<!-- logo and name together -->
<div class="logoAndName">
<!-- <svg xmlns="http://www.w3.org/2000/svg" version="1.0" width="50pt" viewBox="0 0 1600.000000 1600.000000"
preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,1600.000000) scale(0.100000,-0.100000)" fill="#00c3ff" stroke="none">
<path
d="M7465 13484 c-93 -8 -244 -26 -300 -35 -33 -5 -103 -16 -155 -24 -89 -13 -156 -27 -360 -74 -149 -34 -445 -121 -482 -141 -10 -6 -24 -10 -31 -10 -11 0 -132 -43 -192 -69 -11 -5 -45 -19 -75 -31 -30 -13 -75 -32 -100 -43 -25 -10 -54 -23 -65 -27 -107 -45 -407 -194 -489 -244 -33 -20 -68 -38 -78 -42 -10 -3 -18 -10 -18 -15 0 -5 -4 -9 -9 -9 -10 0 -166 -91 -231 -136 -158 -107 -344 -242 -405 -293 -17 -14 -51 -42 -75 -61 -72 -58 -134 -110 -150 -128 -8 -9 -60 -56 -115 -103 -102 -89 -268 -256 -385 -388 -36 -41 -69 -79 -75 -85 -24 -27 -103 -124 -130 -161 -16 -22 -34 -44 -41 -50 -15 -13 -125 -165 -198 -275 -16 -25 -32 -47 -35 -50 -4 -3 -11 -14 -17 -25 -7 -11 -51 -83 -100 -160 -48 -77 -105 -171 -126 -210 -71 -131 -208 -408 -208 -421 0 -8 -4 -14 -10 -14 -5 0 -10 -6 -10 -13 0 -8 -13 -41 -30 -75 -16 -34 -30 -69 -30 -77 0 -7 -5 -17 -10 -20 -5 -3 -10 -17 -10 -30 0 -13 -4 -25 -9 -27 -7 -3 -41 -90 -98 -253 -7 -22 -17 -47 -20 -55 -3 -8 -14 -42 -24 -75 -9 -33 -25 -85 -34 -115 -26 -92 -76 -281 -85 -329 -5 -25 -16 -77 -25 -116 -9 -38 -20 -95 -25 -125 -5 -30 -18 -111 -31 -180 -21 -119 -22 -156 -26 -780 l-4 -655 26 -190 c15 -104 30 -210 35 -235 18 -97 30 -158 50 -240 12 -47 28 -115 36 -151 8 -37 26 -104 40 -150 14 -46 30 -100 34 -119 4 -19 17 -60 28 -90 11 -30 28 -82 38 -115 9 -33 20 -64 24 -70 4 -5 15 -32 25 -60 9 -27 23 -63 30 -80 7 -16 18 -46 25 -65 17 -44 43 -106 85 -195 18 -38 36 -80 39 -92 4 -13 12 -23 17 -23 5 0 9 -5 9 -12 0 -16 63 -142 73 -146 4 -2 7 -10 7 -18 0 -13 18 -52 30 -64 3 -3 14 -23 26 -45 39 -74 59 -110 65 -115 4 -3 9 -15 13 -27 4 -13 12 -23 17 -23 5 0 9 -5 9 -12 0 -13 61 -111 72 -116 5 -2 8 -8 8 -14 0 -13 125 -200 162 -242 10 -11 18 -25 18 -32 0 -7 3 -14 8 -16 4 -1 36 -41 71 -88 36 -47 76 -99 90 -116 14 -18 36 -45 48 -60 96 -128 472 -512 664 -679 144 -125 387 -313 494 -382 28 -18 56 -37 62 -43 30 -25 229 -150 241 -150 6 0 12 -4 12 -10 0 -5 11 -12 25 -16 14 -3 25 -9 25 -13 0 -3 17 -15 38 -26 20 -11 39 -23 42 -26 5 -6 255 -138 341 -180 19 -10 47 -21 62 -24 15 -4 30 -11 33 -16 3 -5 14 -9 24 -9 10 0 20 -3 22 -7 2 -5 39 -23 83 -42 44 -18 99 -42 122 -52 24 -11 59 -19 78 -19 41 0 32 -18 115 210 33 91 64 174 69 185 5 11 28 72 51 135 23 63 45 124 50 135 5 11 23 58 40 105 17 47 34 94 39 105 5 11 16 39 25 63 9 23 23 61 32 85 9 23 20 51 25 62 9 22 35 95 49 136 4 15 15 42 23 60 9 19 23 54 31 79 35 104 47 137 60 165 8 17 22 50 31 75 9 25 21 53 26 62 5 10 9 27 9 38 0 11 3 20 8 20 4 0 19 36 32 80 14 44 28 80 33 80 4 0 7 5 7 11 0 6 16 51 35 100 39 100 91 235 137 354 17 44 39 99 49 122 11 24 19 47 19 52 0 5 7 22 15 38 8 15 33 74 55 131 22 57 46 119 55 138 31 70 44 101 70 169 26 67 43 107 99 224 36 76 34 85 -23 110 -27 11 -52 21 -55 21 -4 0 -29 11 -58 25 -28 14 -58 25 -65 25 -7 0 -13 3 -13 8 0 4 -17 16 -37 27 -48 25 -167 107 -171 117 -2 4 -7 8 -11 8 -26 0 -282 259 -315 319 -5 9 -12 18 -16 21 -18 13 -129 195 -180 294 -64 127 -91 191 -116 267 -9 30 -20 59 -25 64 -7 10 -75 266 -89 340 -62 313 -89 713 -70 1035 22 386 84 727 190 1050 39 118 121 330 164 423 20 43 36 84 36 92 0 7 4 15 9 17 5 2 25 37 45 78 63 131 150 277 261 441 69 100 192 268 205 279 3 3 28 32 55 65 28 33 53 62 58 63 4 2 7 8 7 13 0 13 406 419 419 419 5 0 11 3 13 8 2 4 32 31 68 60 36 29 76 62 89 73 13 11 27 16 31 12 4 -4 3 -79 -2 -165 -15 -227 5 -554 46 -743 112 -518 348 -901 722 -1170 57 -41 110 -75 118 -75 8 0 16 -4 18 -9 5 -13 133 -76 236 -115 86 -33 311 -142 322 -156 3 -4 21 -15 40 -26 19 -10 39 -23 45 -27 5 -4 48 -35 95 -69 46 -33 134 -111 195 -172 240 -243 365 -482 435 -831 18 -90 24 -402 10 -525 -18 -160 -40 -291 -60 -362 -5 -21 -14 -53 -19 -70 -22 -84 -69 -201 -124 -312 -33 -66 -63 -123 -66 -126 -4 -3 -22 -30 -41 -60 -19 -30 -37 -57 -40 -60 -3 -3 -30 -34 -60 -70 -102 -122 -221 -230 -342 -311 -34 -23 -65 -45 -68 -48 -9 -11 -197 -108 -307 -159 -39 -18 -74 -39 -76 -47 -3 -7 10 -46 30 -86 41 -86 55 -119 78 -174 27 -65 32 -78 53 -125 11 -25 35 -84 52 -130 33 -88 45 -116 85 -210 24 -56 49 -120 111 -283 19 -51 38 -101 43 -112 28 -64 41 -96 57 -145 11 -30 22 -56 27 -58 4 -2 7 -14 7 -26 0 -12 4 -26 8 -32 4 -5 17 -34 29 -64 11 -30 44 -116 72 -190 29 -74 56 -146 61 -160 14 -41 71 -193 85 -225 7 -16 38 -99 69 -183 32 -85 61 -161 65 -170 5 -10 39 -100 76 -202 37 -102 73 -198 80 -215 7 -16 25 -64 40 -105 15 -41 33 -88 40 -105 7 -16 32 -84 55 -150 24 -66 48 -123 54 -127 6 -4 21 -8 32 -8 20 0 107 30 146 51 10 5 25 9 33 9 8 0 15 5 15 10 0 6 5 10 12 10 6 0 41 14 77 31 36 17 86 39 111 50 98 40 352 175 358 190 2 5 12 9 22 9 9 0 23 7 30 15 6 8 22 17 33 21 12 4 55 29 96 55 41 27 76 49 78 49 3 0 26 14 51 32 69 46 98 66 150 101 26 17 49 34 52 37 3 4 21 18 41 31 75 50 169 123 169 131 0 4 4 8 10 8 11 0 29 14 100 78 26 23 61 52 76 65 84 65 442 418 549 541 33 38 65 74 70 80 72 79 308 389 371 486 16 25 31 47 35 50 9 8 69 98 69 104 0 2 18 32 40 65 22 33 40 65 40 71 0 5 4 10 9 10 5 0 13 10 17 23 4 12 9 24 13 27 3 3 24 39 45 80 22 41 48 87 58 102 10 14 18 33 18 42 0 9 4 16 8 16 4 0 14 17 21 38 8 20 17 39 20 42 12 10 31 50 31 65 0 8 5 15 10 15 6 0 10 5 10 10 0 6 17 47 39 93 21 45 42 93 46 107 4 14 20 52 36 85 44 95 138 355 169 465 7 25 15 52 18 60 30 82 102 367 133 530 79 405 92 598 86 1225 -4 419 -7 500 -26 640 -12 88 -26 180 -30 205 -5 25 -15 74 -21 110 -35 195 -66 320 -137 555 -25 83 -51 170 -58 195 -7 25 -21 65 -32 90 -11 25 -30 78 -43 118 -13 39 -27 72 -32 72 -4 0 -8 6 -8 13 0 12 -35 99 -102 251 -54 123 -213 427 -279 533 -22 34 -39 67 -39 73 0 5 -4 10 -10 10 -5 0 -10 5 -10 10 0 10 -154 246 -227 347 -60 82 -196 257 -213 273 -9 8 -42 48 -74 88 -32 40 -64 76 -70 80 -6 4 -37 37 -69 74 -70 81 -239 251 -335 337 -119 105 -124 110 -201 174 -41 33 -86 72 -100 85 -14 13 -38 31 -53 40 -16 9 -28 19 -28 23 0 4 -15 16 -32 28 -56 35 -70 45 -100 72 -17 15 -42 33 -56 40 -15 8 -29 17 -32 21 -6 7 -209 141 -230 152 -19 9 -38 20 -130 77 -106 66 -220 127 -410 221 -91 44 -173 85 -182 89 -10 5 -26 9 -37 9 -11 0 -21 3 -23 8 -3 7 -22 15 -229 96 -195 76 -532 182 -674 212 -211 44 -310 63 -380 73 -44 7 -102 16 -130 21 -163 30 -243 33 -770 35 -302 2 -568 1 -590 -1z" />
</g>
</svg> -->
<img
class="logo1"
src="./assets/img/logo.webp"
width="60px"
height="60px"
alt="logo"
/>
<!-- company name -->
<h1 class="logo me-auto" id="landingPage"><a href="#">OS-CODE</a></h1>
</div>
<!-- removed image and replaced with a svg -->
<!-- navbar list excluding contact part -->
</div>
<i class="bi bi-list mobile-nav-toggle"></i>
<div id="navbar" class="navbar order-last order-lg-0 me-4">
<ul class="nav-list">
<li>
<a
class="nav-link scrollto active"
style="text-decoration: none"
href="#hero"
>HOME</a
>
</li>
<li>
<a
class="nav-link scrollto"
style="text-decoration: none"
href="#mainabout"
>ABOUT</a
>
</li>
<li>
<a
class="nav-link scrollto"
style="text-decoration: none"
href="chapters/chapter.html"
>CHAPTERS</a
>
</li>
<li>
<a
class="nav-link scrollto"
style="text-decoration: none"
href="https://blog.oscode.co.in/"
>BLOGS</a
>
</li>
<li>
<a
class="nav-link scrollto"
href="assets/gallery.html"
style="text-decoration: none"
>GALLERY</a
>
</li>
<li>
<a
class="nav-link scrollto"
href="./events/events.html"
style="text-decoration: none"
>EVENTS</a
>
</li>
<li>
<a
class="nav-link scrollto"
href="contact/contact.html"
style="text-decoration: none"
>CONTACT</a
>
</li>
<li>
<a
class="nav-link scrollto"
href="./contributors/contributor.html"
style="text-decoration: none"
>CONTRIBUTORS</a
>
</li>
<!--<li>
<a href="./login/login.html">
<div class="get-started-btn-1 scrollto cntctBtn">
<i class="fa-regular fa-user"></i>
</div>
</a>
</li>-->
</ul>
<!-- navbar list ends here -->
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container hero" data-aos="zoom-out" data-aos-delay="100">
<div class="row">
<div class="col-xl-12">
<h1 class="home css-15">
A Community of Learners, Creators, and Contributors
</h1>
<h2>
<span id="auto-type" class="roboto"></span>
</h2>
<h2 class="home-para">
Our mission is to provide college students with the resources and
opportunities they need to learn, grow, and collaborate in the
tech space.
</h2>
<!-- <a href="#contact" class="get-started-btn scrollto left cntctBtn">Get Started<i
class="bi bi-caret-right home-i"></i></a>
<a href="#" class="get-started-btn scrollto left cntctBtn">Services<i
class="bi bi-caret-right home-i"></i></a> -->
<div class="get-btn">
<a href="#join-us" class="get-started-btn1"
><span>Get Started</span></a
>
<a href="https://tech.oscode.co.in/" class="get-started-btn2"
><span>Services</span></a
>
</div>
</div>
</div>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="mainabout" class="clients">
<div class="us">
<h1>Who we are ?</h1>
<div class="hrCount">
<hr class="line hr-center" />
</div>
</div>
<div class="container" data-aos="fade-up">
<div class="section-title">
<!--<h1>
About Us
</h1> -->
</div>
<div
class="row whoarewe"
data-aos="fade-up"
data-aos-delay="100"
style="row-gap: 70px"
>
<div class="col-lg-6">
<!---- <div class="aboutus"> -->
<div class="abt-txt">
<div class="style">
<p class="p-hover">
<svg
stroke="currentColor"
fill="currentColor"
stroke-width="0"
viewBox="0 0 1024 1024"
class="h2 text-primary"
height="0.8em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
style="flex-shrink: 0"
>
<path
d="M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 0 0 .6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0 0 46.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z"
></path>
</svg>
We are a <strong>Multi-College Tech Community</strong> that
helps college students to learn in public and engage with
similar-minded people.
</p>
<p class="p-hover">
<svg
stroke="currentColor"
fill="currentColor"
stroke-width="0"
viewBox="0 0 1024 1024"
class="h2 text-primary"
height="0.8em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
style="flex-shrink: 0"
>
<path
d="M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 0 0 .6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0 0 46.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z"
></path>
</svg>
We help local college communities to encourage this culture
on their campus and help them to build it.
</p>
<p class="p-hover">
<svg
stroke="currentColor"
fill="currentColor"
stroke-width="0"
viewBox="0 0 1024 1024"
class="h2 text-primary"
height="0.8em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
style="flex-shrink: 0"
>
<path
d="M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 0 0 .6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0 0 46.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z"
></path>
</svg>
We help upskill in the domain of your interests by
organizing workshops, technical seminars, hackathons,
project sessions, code-along, etc.
</p>
<p class="p-hover">
<svg
stroke="currentColor"
fill="currentColor"
stroke-width="0"
viewBox="0 0 1024 1024"
class="h2 text-primary"
height="0.8em"
width="1em"
xmlns="http://www.w3.org/2000/svg"
style="flex-shrink: 0"
>
<path
d="M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 0 0 .6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0 0 46.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z"
></path>
</svg>
The Community aims to help individuals to Collaborate and
Contribute to Open-Source Projects by mentoring them at each
stage of their Contribution.
</p>
</div>
</div>
</div>
<div class="col-lg-6">
<!--<img class="abt-img" src="./assets/img/abt1.jpg" alt="about-us"> -->
<img
class="whoweare"
src="./assets/img/abt.webp"
alt="about-us"
/>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Counts Section ======= -->
<section id="counts" class="counts">
<div class="container modifiedCount" data-aos="fade-up">
<div class="firstCount">
<h1>Numbers say it all!</h1>
</div>
<div class="hrCount">
<hr class="line hr-center" />
</div>
<div class="row modifyingCount">
<div class="col-lg-3 col-md-6">
<div class="bx-1 count-box">
<i class="bi bi-people-fill"></i>
<span
data-purecounter-start="0"
data-purecounter-end="10000"
data-purecounter-duration="1"
class="purecounter"
></span>
<span>+</span>
<p>Members</p>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="bx-2 count-box">
<i class="bi bi-stars"></i>
<span
data-purecounter-start="0"
data-purecounter-end="5000"
data-purecounter-duration="1"
class="purecounter"
></span>
<span>+</span>
<p>Reviews</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="bx-3 count-box">
<i class="fa-solid fa-user-graduate"></i>
<span
data-purecounter-start="0"
data-purecounter-end="50"
data-purecounter-duration="1"
class="purecounter"
></span>
<span>+</span>
<p>Institutes</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="bx-4 count-box">
<i class="bi bi-journal-richtext"></i>
<span
data-purecounter-start="0"
data-purecounter-end="100"
data-purecounter-duration="1"
class="purecounter"
></span>
<span>+</span>
<p>Events</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Counts Section -->
<!-- ======= Benefits Section ======= -->
<section class="about section-bg" id="benefits">
<div class="container" data-aos="fade-down">
<h1 class="benefit-head text-center">Why choose us?</h1>
<hr class="line hr-center" />
<div class="row modified">
<div class="col-lg-3 col-sm-6 leftPart">
<!-- Tab navs -->
<div
class="nav flex-column nav-pills text-center circle leftPartTabs"
id="v-pills-tab"
role="tablist"
aria-orientation="vertical"
>
<a
class="nav-link active edit1"
id="v-pills-link1-tab"
data-bs-toggle="pill"
href="#v-pills-link1"
role="tab"
aria-controls="v-pills-link1"
aria-selected="true"
>Upskill Students</a
>
<a
class="nav-link edit1"
id="v-pills-link2-tab"
data-bs-toggle="pill"
href="#v-pills-link2"
role="tab"
aria-controls="v-pills-link2"
aria-selected="false"
>Hire Talents</a
>
<a
class="nav-link edit1"
id="v-pills-link3-tab"
data-bs-toggle="pill"
href="#v-pills-link3"
role="tab"
aria-controls="v-pills-link3"
aria-selected="false"
>Hackathons & Seminars</a
>
<a
class="nav-link edit1"
id="v-pills-link4-tab"
data-bs-toggle="pill"
href="#v-pills-link4"
role="tab"
aria-controls="v-pills-link4"
aria-selected="false"
>Ideation Seeding</a
>
</div>
<!-- Tab navs -->
</div>
<div class="col-lg-9 col-sm-6 rightPart">
<!-- Tab content -->
<div class="tab-content" id="v-pills-tabContent">
<div
class="tab-pane fade show active"
id="v-pills-link1"
role="tabpanel"
aria-labelledby="v-pills-link1-tab"
>
<div class="flex-container animator">
<div class="flex-child gallery left-tab">
<img
src="./assets/img/benefit/upskill.webp"
alt="upskill students"
/>
</div>
<div class="flex-child gallery right-tab">
<h4 class="benefits">Upskill Students</h4>
<p>
We help students to get started with their lifelong
journey of coding. Students will explore and learn what
real-world Software development looks like.
</p>
<p>
Problem-solving skills and interpersonal skills will be
refined. Overall students will enjoy with this
collaborative journey of learning, practicing and
sharing technical skills with our enthusiastic
community!!
</p>
</div>
</div>
</div>
<div
class="tab-pane fade"
id="v-pills-link2"
role="tabpanel"
aria-labelledby="v-pills-link2-tab"
>
<div class="flex-container animator">
<div class="flex-child gallery left-tab">
<img
src="./assets/img/benefit/hire.webp"
alt="hire Talents"
/>
</div>
<div class="flex-child gallery right-tab">
<h4 class="benefits">Hire Talents</h4>
<p>
At OSCode, we are dedicated to help students jumpstart
their technical journey and pave the way toward their
first job or internship.
</p>
<p>
By joining us, you benefit from future internship
opportunities, connect with industry experts,
certifications, career guidance mentorship, practical
learning, connect with similar-minded people, and so
much more.
</p>
</div>
</div>
</div>
<div
class="tab-pane fade"
id="v-pills-link3"
role="tabpanel"
aria-labelledby="v-pills-link3-tab"
>
<div class="flex-container animator">
<div class="flex-child gallery left-tab">
<img
src="./assets/img/benefit/seminars.webp"
alt="hackathons & seminars"
/>
</div>
<div class="flex-child gallery right-tab">
<h4 class="benefits">Hackathons & Seminars</h4>
<p>
Through our workshops, technical seminars, hackathons,
project sessions, code-along, and more, we strive to
provide a comprehensive learning experience that
prepares students for the challenges of the real world.
</p>
<p>
Join us today and embark on an exciting journey of
personal and professional growth!
</p>
</div>
</div>
</div>
<div
class="tab-pane fade"
id="v-pills-link4"
role="tabpanel"
aria-labelledby="v-pills-link4-tab"
>
<div class="flex-container animator">
<div class="flex-child gallery left-tab">
<img
src="./assets/img/benefit/ideation.webp"
alt="ideation seeding"
/>
</div>
<div class="flex-child gallery right-tab">
<h4 class="benefits">Ideation Seeding</h4>
<p>
With our rapidly growing presence in Bangalore, we aim
to expand our initiative globally and continue to
inspire and upskill students in the domains of their
interests.
</p>
<p>
Our community is specifically designed for students who
aspire to build a career in the tech industry, and
provides a supportive environment for peer-to-peer
learning.
</p>
</div>
</div>
</div>
</div>
<!-- Tab content -->
</div>
</div>
</div>
</section>
<!-- End Benefits Section -->
<!-- ======= Clients Section ======= -->
<section id="clients" class="clients">
<div class="container" data-aos="zoom-in">
<h1 class="text-center">Our Sponsors and Partners</h1>
<hr class="line hr-center" />
<div class="clients-slider swiper">
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide">
<img
src="./assets/img/clients/unacademy.webp"
class="img-fluid enlarge"
alt="unacademy"
/>
</div>
<div class="swiper-slide">
<img
src="./assets/img/clients/codechef.webp"
class="img-fluid enlarge"
alt="codechef"
/>
</div>
<div class="swiper-slide">
<img
src="./assets/img/clients/worldcoin.jpg"
class="img-fluid enlarge"
alt="worldcoin"
/>
</div>
<div class="swiper-slide">
<img
src="./assets/img/clients/mlsa.webp"
class="img-fluid"
alt="mlsa"
/>
</div>
<div class="swiper-slide">
<img
src="./assets/img/clients/polygon.webp"
class="img-fluid enlarge"
alt="polygon"
/>
</div>
<div class="swiper-slide">
<img
src="./assets/img/clients/hackerrank.webp"
class="img-fluid"
alt="hackerrank"
/>
</div>
<div class="swiper-slide">
<img
src="./assets/img/clients/techno.webp"
class="img-fluid enlarge"
alt="techno"
/>
</div>
<div class="swiper-slide">
<img
src="./assets/img/clients/gsoc.webp"
class="img-fluid enlarge"
alt="gsoc"
/>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- End Clients Section -->
<!-- ======= Acheivement Section ======= -->
<section id="achievement" class="testimonials">
<div class="container" data-aos="fade-up">
<h1 class="text-center">Our Accomplishments</h1>
<hr class="line hr-center" />
<div
class="testimonials-slider swiper"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item modifiedAccomp">
<div class="upperPart">
<img
src="./assets/img/achievement/devx.jfif"
class="testimonial-img"
alt=""
/>
<div class="textUpperPart">
<h3>Partnership with DevX</h3>
<h4>Annual Springfest of Techno India University</h4>
</div>
</div>
<div class="middlePart">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
OSCode has officially joined as a community partner for
DevX, the annual Springfest of Techno India University.
We look forward to contributing our knowledge,
resources, and expertise to help make DevX successful.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="bottomPart">
<a
href="https://www.linkedin.com/posts/oscode_oscode-community-devx-activity-7050410583078182912-z5k_?utm_source=share&utm_medium=member_desktop"
target="_blank"
rel="noopener noreferrer"
>Know more...</a
>
</div>
</div>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item modifiedAccomp">
<div class="upperPart">
<img
src="https://drive.google.com/uc?export=download&id=1Jvw70OAJzX9iWz7Iurv3t35cSD2Teiz5"
class="testimonial-img"
alt=""
/>
<div class="textUpperPart">
<h3>Partnership with Codechef</h3>
<h4>To conduct contests</h4>
</div>
</div>
<div class="middlePart">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
OS CODE was proud to present the 7th edition of HUSTLE
with Platform Partner CODECHEF! We thank and appreciate
all the participants who helped in making this event a
success. We'll be back with many more events and
contests! Stay tuned 💫
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="bottomPart">
<a
href="https://www.linkedin.com/posts/oscode_oscode-hustle-hustle7-activity-7042872281932476416-8vfU?utm_source=share&utm_medium=member_desktop"
target="_blank"
rel="noopener noreferrer"
>Know more...</a
>
</div>
</div>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item modifiedAccomp">
<div class="upperPart">
<img
src="./assets/img/achievement/1st_offline.jfif"
class="testimonial-img"
alt=""
/>
<div class="textUpperPart">
<h3>Open Source: The Foundation Stone</h3>
<h4>1st offline event</h4>
</div>
</div>
<div class="middlePart">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
*Open Source: The Foundation Stone* turned out to be a
great success with peak participation of more than
2️⃣0️⃣0️⃣ people. 💫 It remained extremely informative and
ever inspiring without compromising on the fun and
humour component 🤩.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="bottomPart">
<a
href="https://www.linkedin.com/posts/oscode_achievements-have-no-value-if-you-leave-activity-6968906596198346753-L8hY?utm_source=share&utm_medium=member_desktop"
target="_blank"
rel="noopener noreferrer"
>Know more...</a
>
</div>
</div>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-wrap">
<div class="testimonial-item modifiedAccomp">
<div class="upperPart">
<img src="./assets/img/testi3.jpeg" class="testimonial-img" alt="">
<div class="textUpperPart">
<h3>Amazing community</h3>
<h4>Learing & building together</h4>
</div>
</div>
<div class="middlePart">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Achievements have no value, if you leave behind the people to celebrate with.We believe that our
club is making a positive impact on our college community and
beyond, and we're grateful for the opportunity to share our journey with you.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="bottomPart">
<a href="https://www.linkedin.com/posts/oscode_oscode-community-bit-activity-7046111645508481024-fzUe?utm_source=share&utm_medium=member_desktop"
target="_blank" rel="noopener noreferrer">Know more...</a>
</div>
</div>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- End Achievement Section -->
<!--Gallery-->
<!-- End gallery Section -->
<!-- ======= Join US Section ======= -->
<section id="join-us" class="join section-bg1">
<div class="container" data-aos="fade-up">
<h1 class="text-center">Join Us</h1>
<hr class="line hr-center">
<div class="row" data-aos="fade-up" data-aos-delay="100" style="margin-top: 10px;">
<div class="abt-txt">
<h2 class="us"><i class="fa-sharp fa-regular fa-handshake"
style="color: #3713b9; margin-right: 10px;"></i>How to Join us??</h2>
<p>Start your collaborative journey of learning, practicing, and sharing technical skills with
our enthusiastic
community!! by filling out this Google form 👇</p>
</div>
<a href="https://forms.gle/w3SgHzXz4m9bynXL9" target="_blank" text-decoration:none;>
<p class="benefits link">OSCode Community Student Form</p>
</a>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="100" style="margin-top: 10px;">
<div class="abt-txt">
<!-- <h2 class="us" style="margin-bottom: 0px;"><i class="bi bi-chat-heart"></i> Reach us out
through...</h2> -->
<h2 class="us" style="margin-bottom: 0px;"><i class="bi bi-chat-heart"></i> Contact us via..</h2>
</div>
<div class="row join ml-auto mr-auto">
<div class="col-lg-4 col-md-6 shrink">
<div class="git-box con-box">
<a href="https://github.com/OSCode-Community" target="_blank" aria-label="Visit us on Github"
title="Github (External Link)" rel="noopener noreferrer">
<i class="bi bi-github github-box"></i>
<p>Github</p>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5 mt-md-0 shrink">
<div class="discord-container con-box">
<a href="https://discordapp.com/channels/945676223101698060/945680318248128543/946084270693318686"
target="_blank" aria-label="Join with us on Discord" title="Discord (External Link)"
rel="noopener noreferrer">
<i class="bi bi-discord discord-box"></i>
<p>Discord</p>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5 mt-lg-0 shrink">
<div class="linkedin-container con-box">
<a href="https://www.linkedin.com/company/oscode/" target="_blank" aria-label="Visit us on Linkedin"
title="Linkedin (External Link)" rel="noopener noreferrer">
<i class="bi bi-linkedin linkedin-box"></i>
<p>LinkedIn</p>
</a>
</div>
</div>
</div>
<div class="row join shrink ml-auto mr-auto">
<div class="col-lg-4 col-md-6">
<div class="instagram-container con-box">
<a href="https://instagram.com/os_code_community?igshid=YmMyMTA2M2Y=" target="_blank"
aria-label="Visit us on Instagram" title="Instagram (External Link)" rel="noopener noreferrer">
<i class="bi bi-instagram instagram-box"></i>
<p>Instagram</p>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5 mt-md-0 shrink">
<div class="twitter-container con-box">
<a href="https://twitter.com/OSCodeCommunity" target="_blank" aria-label="Visit us on Twitter"
title="Twitter (External Link)" rel="noopener noreferrer">
<i class="bi bi-twitter twitter-box"></i>
<p>Twitter</p>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5 mt-lg-0 shrink">
<div class="tele-container con-box">
<a href="https://t.me/+yNBAO5cbFLk3NTA1" target="_blank" aria-label="Join with us on Telegram"
title="Telegram (External Link)" rel="noopener noreferrer">
<i class="bi bi-telegram telegram-box"></i>
<p>Telegram</p>
</a>
</div>