forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3677 lines (3545 loc) · 169 KB
/
Copy pathindex.html
File metadata and controls
3677 lines (3545 loc) · 169 KB
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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="assets/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<link href="https://fonts.googleapis.com/css2?family=Domine&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<title>Contribute To This Project</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="column">
<!-- Night Mode Creation -->
<div class="nightmode">
<div class="toggle-box">
<input type="checkbox" name="checkbox1" id="toggle-box-checkbox" />
<label for="toggle-box-checkbox" class="toggle-box-label-left"></label>
<label for="toggle-box-checkbox" class="toggle-box-label"></label>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js" integrity="sha512-STof4xm1wgkfm7heWqFJVn58Hm3EtS31XFaagaa8VMReCXAkQnJZ+jEy8PCC/iT18dFy95WcExNHFTqLyp72eQ==" crossorigin="anonymous"></script>
</div>
<!-- / Night Mode Creation -->
</div>
</div>
<div class="row">
<div class="column-double">
<div class="column-left">
<h1>CONTRIBUTE TO THIS PROJECT</h1>
<h2>A project for first-time contributions</h2>
<p>This is a tutorial to help first-time contributors participate in a simple and easy project. Get more comfortable using GitHub and make your first open source contribution. It's quick and easy.</p>
<a class="button" href="https://github.com/Syknapse/Contribute-To-This-Project/blob/master/README.md" target="_blank" title="Go to project README - A step by step tutorial">
Learn how to contribute
<i class="fas fa-long-arrow-alt-right"></i>
</a>
</div>
</div>
<div class="column">
<div class="column-right">
<div class="twitter-button">
<a
href="https://twitter.com/share?ref_src=twsrc%5Etfw"
class="twitter-share-button"
data-size="large"
data-text="Contribute To This Project. An easy Git and GitHub project for first-time contributors, with a full tutorial."
data-url="https://github.com/Syknapse/Contribute-To-This-Project"
data-via="Syknapse"
data-hashtags="100DaysOfCode"
data-show-count="false"
title="Tweet this project"
>
Tweet
</a>
<script async="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<p>Contributions so far...</p>
<div class="animated" id="contributions-number">0</div>
</div>
</div>
</div>
<!-- <div class="searchContainer">
<input id="searchbar" type="search" name="search" placeholder="Search for your card here!" />
</div> -->
<div class="grid" id="contributions">
<!-- ================================================ -->
<!-- ================== TEMPLATE ================== -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Your name</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com" target="_blank">Your handle</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com" target="_blank">Your handle</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">Resource 1</a>
</li>
<li>
<a href="#" target="_blank" title="Second Resource">Resource 2</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- COPY everything ABOVE this, from contributor card start to end along with the "START" and "END" comment lines -->
<!-- ============== ^^^^ TEMPLATE ^^^^ ============== -->
<!-- ================================================ -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- Keep one line of space above and below your card -->
<!-- ========= Paste YOUR CARD directly BELOW this line ========= -->
<!-- ________ YakupFE Contributor card START ________ -->
<div class="card">
<p class="name">Yakup Furkan ERPEK</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/ErpekYakup" target="_blank">YFE</a>
<i class="fab fa-github"></i>
<a href="https://github.com/YakupFE" target="_blank">YakupFE</a>
</p>
<p class="about">Trying to be a game developer, loves automating and optimizing</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://projecteuler.net/about" target="_blank" title="1St">Project Euler</a>
</li>
<li>
<a href="https://www.youtube.com/@BenCloward/videos" target="_blank" title="2nd">Ben Cloward</a>
</li>
<li>
<a href="https://80.lv/" target="_blank" title="3rd">80 level</a>
</li>
</ul>
</div>
</div>
<!-- ________ YakupFE Contributor card END ________ -->
<!-- ________ Jahnavi Contributor card START ________ -->
<div class="card">
<p class="name">Thutta Jahnavi</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/jahnavithutta129" target="_blank">jahnavithutta129</a>
</p>
<p class="about">A passionate developer with web development and Java skills.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Jahnavi Contributor card END ________ -->
<!-- ________ *Agrima Singh Rajput Contributor card START ________ -->
<div class="card">
<p class="name">Agrima Singh Rajput</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/agrima-rajput153/" target="_blank">agrima-rajput153</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Agrima5115" target="_blank">Agrima5115</a>
</p>
<p class="about">👋 Computer Science student 🌐 | Aspiring Web & App Developer 🚀 | Open to collaborations 🤝 | Let's code the future together! 🌟</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN">MDN Web Docs</a>
</li>
<li>
<a href="https://firebase.google.com/" target="_blank" title="Firebase">Firebase</a>
</li>
<li>
<a href="https://aws.amazon.com/" target="_blank" title="AWS">AWS - Amazon Web Services</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ *ROhan Contributor card START ________ -->
<div class="card">
<p class="name">Rohan</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://github.com/RohanReddy2003" target="_blank">rohan</a>
<i class="fab fa-github"></i>
<a href="https://github.com/RohanReddy2003" target="_blank">RohanReddy2003</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.toools.design/mockups-ui-kits-and-freebies#ui-freebies" target="_blank" title="Tools.design">TOOOLS.design(free UI/UX tools)</a>
</li>
<li>
<a href="https://savee.it/" target="_blank" title="savee">savee(pinterest for designers)</a>
</li>
<li>
<a href="https://eycndy.co/" target="_blank" title="Eye candy">Eye candy(film making ideas)</a>
</li>
</ul>
</div>
</div>
<!-- ________ Rohan Contributor card END ________ -->
<!-- ________ Saksham Bhugra Contributor card START ________ -->
<div class="card">
<p class="name">Saksham Bhugra</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/saksham-bhugra-a55980249/" target="_blank">saksham-bhugra-a55980249</a>
<i class="fab fa-github"></i>
<a href="https://github.com/sh4d0w" target="_blank">sh4d0wy</a>
</p>
<p class="about">A passionate developer with web development and Java skills. Web3 enthusiast and a fast learner.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________Saksham Bhugra Contributor card END ________ -->
<!-- ________ Joseph Contributor card START ________ -->
<div class="card">
<p class="name">Bello Osaze Joseph</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/bello-joseph-970727265" target="_blank">Bello (Osaze) Joseph</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Sephjoe123" target="_blank">Sephjoe123</a>
</p>
<p class="about">Just a guy who loves to make things, innovation is the key-word in my life</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="ChatGpt">
ChatGPT(Website)
</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3-schools">
w3schools(Website)
</a>
</li>
<li>
<a href="https://www.youtube.com/@TraversyMedia" target="_blank" title="Traversy Media">
TraversyMedia(Youtube)
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Joseph Contributor card END ________ -->
<!-- ________ *S A G A R* Contributor card START ________ -->
<div class="card">
<p class="name">S A G A R</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/tmsagarofficial" target="_blank">@tmsagarofficial</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/tmsagarofficial" target="_blank">@tmsagarofficial</a>
</p>
<p class="about">A Curious learner, learning more about Web-Dev, web3/crypto, DevOps Enthusiast 👨💻</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh/javascript" target="_blank" title="First Resource">JavaScript Roadmap</a>
</li>
<li>
<a href="https://www.theodinproject.com" target="_blank" title="Second Resource">Full stack course</a>
</li>
<li>
<a href="https://developers.google.com/edu/python" target="_blank" title="Third resource">Google's Python Class</a>
</li>
</ul>
</div>
</div>
<!-- ________ S A G A R Contributor card END ________ -->
<!-- ________ Abhiram Royals Contributor card START ________ -->
<div class="card">
<p class="name">Abhiram Royals</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/abhiram-royals/" target="_blank">@abhiram-royals</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Royal-Dragon" target="_blank">@Royal-Dragon</a>
</p>
<p class="about">A Curious Electronic Student,Weeb,Graphic Designer and film maker from India </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.toools.design/mockups-ui-kits-and-freebies#ui-freebies" target="_blank" title="Tools.design">TOOOLS.design(free UI/UX tools)</a>
</li>
<li>
<a href="https://savee.it/" target="_blank" title="savee">savee(pinterest for designers)</a>
</li>
<li>
<a href="https://eycndy.co/" target="_blank" title="Eye candy">Eye candy(film making ideas)</a>
</li>
</ul>
</div>
</div>
<!-- ________ Abhiram Royals Contributor card END ________ -->
<!-- ________ Upendra card START ________ -->
<div class="card">
<p class="name">Upendra</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/upendra.10/" target="_blank">upendra.10</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Upendra2003" target="_blank">YUpendra2003</a>
</p>
<p class="about">A passionate web developer and graphic designer!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@CodeWithHarry" target="_blank" title="First Resource">Codewithharry</a>
</li>
<li>
<a href="https://www.youtube.com/@DennisIvy" target="_blank" title="Second Resource">DennisIvy</a>
</li>
<li>
<a href="https://www.youtube.com/@JennyslecturesCSIT" target="_blank" title="Third resource">Jenny</a>
</li>
</ul>
</div>
</div>
<!-- ________ Upendra card END ________ -->
<!-- ________ Anish Sarawgi Contributor card START ________ -->
<div class="card">
<p class="name">Anish Sarawgi</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Anish-Sarawgi" target="_blank">Anish-Sarawgi</a>
</p>
<p class="about">👋 Hello, I'm Anish Sarawgi! 🚀Developer | 👨💻Tech & Open Source Enthusiast | 🎓NITR Student</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="Codecademy">Codecademy</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="The Odin Project">The Odin Project</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Anish Sarawgi Contributor card END ________ -->
<!-- ________ Sapnendra Contributor card START _________ -->
<div class="card">
<p class="name">Sapnendra Jaiswal</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sapnendra">sapnendra</a>
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/Xsapnendra" target="_blank">Xsapnendra</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/sapnendra" target="_blank">sapnendra</a>
</p>
<p class="about">A visionary, an optimistic individual looking forward to excel as Corporate Personnel by performing my roles and
responsibilities with full effort, efficiency, creativity & give my best to accomplish the given task.</p>
<div class="resources">
<p>Useful Dev Resources</p>
<ul>
<li>
<a href="https://sapnendra.github.io/" target="_blank" title="First Resource">Portfolio</a>
</li>
<li>
<a href="https://github.com/sapnendra/Profile-Card" target="_blank" title="Second Resource">Profile-Card</a>
</li>
<li>
<a href="https://github.com/sapnendra/Amazon" target="_blank" title="Third Resource">Landing Page Amazon</a>
</li>
<li>
<a href="https://github.com/sapnendra/Recipe-website/" target="_blank" title="Fourth Resource">Recipe Website</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sapnendra Contributor card START _________ -->
<!-- ________ amandeep Contributor card START _________ -->
<div class="card">
<p class="name">amandeep singh parihar</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://x.com/P0IS0N375996?t=Ts4x4bgfSvbLD_JXvbScaw&s=08" target="_blank">amandeepsinghparihar</a>
<i class="fab fa-github"></i>
<a href="https://github.com/amandeep-singh-parihar" target="_blank">amandeep-singh-parihar</a>
</p>
<p class="about">Passionate tech enthusiast and coder, dedicated to innovation, problem-solving, and constant learning in the ever-evolving world of technology.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtu.be/ESnrn1kAD4E?si=QY6NWYNeoAk2VVIv" target="_blank" title="First Resource">CSS Tutorial for Beginners</a>
</li>
<li>
<a href="https://youtu.be/HcOc7P5BMi4?si=HLNH-BNpoWd5IEoK" target="_blank" title="Second Resource">HTML Tutorial for Beginners</a>
</li>
<li>
<a href="https://youtu.be/hlGoQC332VM?si=Y5H4IZGXMZ2p2upu" target="_blank" title="Third resource">SQL - Complete Course in 3 Hours</a>
</li>
</ul>
</div>
</div>
<!-- ________ amandeep Contributor card START _________ -->
<!-- ________ YadlaMani Contributor card START _________ -->
<div class="card">
<p class="name">YadlaMani</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/mani_yadla?t=wa5NteshFDQQ-g_DxAcrqw&s=08 " target="_blank">Twitter</a>
<i class="fab fa-github"></i>
<a href="https://github.com/YadlaMani" target="_blank">github</a>
<i class="fab fa-instagram"></i>
<a href="https://instagram.com/_mani_yadla?igshid=ZDdkNTZiNTM=" target="_blank">Instagram</a>
<i class="fab fa-linkedin"></i>
<a href="www.linkedin.com/in/yadla-mani" target="_blank">LinkedIn</a>
</p>
<p class="about">
Hi there, I'm Mani Yadla.
A passionate Computer Science Student from India.
I am currently pursuing B.Tech in CVR College of Engineering. Technology excites me and I am always in awe of the change it drives in the world. Certain skills that I have worked with include Data Structures and Algorithms (C++), Web Development (HTML, CSS) & Linux OS. And what I might lack in skills I make up for with my determination to learn. I am passionate about problem-solving and enjoy participating in competitive programming contests.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">W3Schools</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Second Resource">GeeksForGeeks</a>
</li>
<li>
<a href="https://poe.com/login" target="_blank" title="Third resource">Poe</a>
</li>
</ul>
</div>
</div>
<!-- ________ YadlaMani Contributor card END _________ -->
<!-- ________ Jessy Hanifiah Contributor card START ________ -->
<div class="card">
<p class="name">Shirshak Kumar</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/kshirshak76" target="_blank">Twitter</a>
<i class="fab fa-github"></i>
<a href="https://github.com/shirshakk" target="_blank">Github</a>
</p>
<p class="about">I am deeply passionate about frontend development and actively utilizing Next.js and Tailwindcss in my current tech stack.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtube.com/playlist?list=PL4cUxeGkcC9gZD-Tvwfod2gaISzfRiP9d&si=SKHQJX3V532Lo8rH" target="_blank" title="Full Modern React Tutorial">The Net Ninja</a>
</li>
<li>
<a href="https://youtube.com/playlist?list=PLU4DS8KR-LJ3-zouYHHknPq1G5VTB8PRf&si=MtP3rUYQXMRVKnN1" target="_blank" title="Tutorial NextJS Indonesia">Prawito Hudoro</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn/2022/responsive-web-design" target="_blank" title="Responsive Web Design">freeCodeCamp</a>
</li>
</ul>
</div>
</div>
<div class="card">
<p class="name">Jessy Hanifiah</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/jxxxhxxn" target="_blank">jxxxhxxn</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/jeeehaan" target="_blank">jeeehaan</a>
</p>
<p class="about">I am deeply passionate about frontend development and actively utilizing Next.js and Tailwindcss in my current tech stack.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtube.com/playlist?list=PL4cUxeGkcC9gZD-Tvwfod2gaISzfRiP9d&si=SKHQJX3V532Lo8rH" target="_blank" title="Full Modern React Tutorial">The Net Ninja</a>
</li>
<li>
<a href="https://youtube.com/playlist?list=PLU4DS8KR-LJ3-zouYHHknPq1G5VTB8PRf&si=MtP3rUYQXMRVKnN1" target="_blank" title="Tutorial NextJS Indonesia">Prawito Hudoro</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn/2022/responsive-web-design" target="_blank" title="Responsive Web Design">freeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ Jessy Hanifiah card END ________ -->
<!-- ________ Hana Hasanah Contributor card START ________ -->
<div class="card">
<p class="name">Hana Hasanah</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/hasanah11_hana" target="_blank">@hasanah11_hana</a>
<i class="fab fa-github"></i>
<a href="https://github.com/codeOraaange" target="_blank">@codeOraaange</a>
</p>
<p class="about">A passionate Backend Developer from Indonesia</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Hana Hasanah Contributor card END ________ -->
<!-- ________ rishabh22204901 card START ________ -->
<div class="card">
<p class="name">Rishabh Kumar</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/RISHABH22204901" target="_blank">Twitter</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/rishabh22204901" target="_blank">Github</a>
</p>
<p class="about">
Hello there, It's me Rishabh,<br> A passionate Computer Science bachelor Student from India. <br>
I’m currently learning Full Stack Web Development and DSA in Java, I am also fascinated by Cloud and Devops ... Planning to dip my leg in AI/ML in the future, maybe or may be not who knows? ..
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.udemy.com/" target="_blank" title="First Resource">udemy</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">freecodecamp</a>
</li>
<li>
<a href="https://pll.harvard.edu/subject/programming" target="_blank" title="Third resource">HARVARD UNIVERSITY</a>
</li>
</ul>
</div>
</div>
<!-- ________ rishabh22204901 card END ________ -->
<!-- ________ Mbitu Contributor carD START _________ -->
<div class="card">
<p class="name">Mbitu James</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/mbituke?t=Muk5dtcI0b2EsgyPGu424A&s=09" target="_blank">Twitter</a>
<i class="fab fa-github"></i>
<a href="https://github.com/mbitujames" target="_blank">github</a>
<i class="fab fa-instagram"></i>
<a href="https://instagram.com/_mbitu_?igshid=ZDdkNTZiNTM=" target="_blank">Instagram</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/mbitu-james-136b9519b" target="_blank">LinkedIn</a>
</p>
<p class="about">
Hi there, I'm Mbitu james.
A passionate Software Engineer from Kenya.
Passionate about creating pixel-perfect, user-friendly interfaces that bring ideas to life. I specialize in turning complex concepts into elegant, responsive web applications.
Proficient in HTML, CSS, JavaScript, and popular frameworks like React. Always staying up-to-date with the latest front-end technologies and best practices.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://spline.design/ai" target="_blank" title="First Resource">Spline.design</a>
</li>
<li>
<a href="https://www.useflytrap.com/" target="_blank" title="Second Resource">Flytrap</a>
</li>
<li>
<a href="https://poe.com/login" target="_blank" title="Third resource">Poe</a>
</li>
</ul>
</div>
</div>
<!-- ________ Mbitu Contributor carD START _________ -->
<!-- ________ Ankit card Start ________ -->
<div class="card" >
<p class="name">Ankit Kumar</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ankit-kumar-01a52827b/" target="_blank">Ankit Kumar</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ankit071105" target="_blank">ankit071105</a>
</p>
<p class="about">Passionate B.Tech Computer Science Student | Web development & iOS enthusiast | Eager to Learn and Innovate</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Best Resource to learn Ios Development">Udemy</a>
</li>
<li>
<a href="https://infyspringboard.onwingspan.com/web/en/login" target="_blank" title="Best Free Course By Infosys in python java & c++">Infosys Springboard</a>
</li>
<li>
<a href="https://www.codingninjas.com/" target="_blank" title="Platform of popular SDE sheets and much more">Coding Ninjas</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ankit card END ________ -->
<!-- ________ Eray Sahin Contributor card START ________ -->
<div class="card">
<p class="name">Eray Sahin</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/eraysahin06/" target="_blank">Linkedin</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/eraysahin06" target="_blank">GitHub</a>
</p>
<p class="about">I'm a full-stack developer currently collaborating with two startup organizations.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</ul>
</div>
</div>
<!-- ________ Eray Sahin Contributor card END ________ -->
<!-- ________ Emanuel Enriquez Contributor card START ________ -->
<div class="card">
<p class="name">Emanuel Enriquez</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/emaenriquez/" target="_blank">LinkedIN</a>
<i class="fab fa-github"></i>
<a href="https://github.com/emaenriquez" target="_blank">GitHub</a>
</p>
<p class="about">Desarrollador de Software - Aprendiendo Python</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="chat openai">Chat GPT</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Emanuel Enriquez Contributor card END ________ -->
<!-- ________ SOHAM Contributor card START ________ -->
<div class="card">
<p class="name">Soham Roy</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Jamestor007"target="_blank">NOTON</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Soham-0047" target="_blank">SOHAM</a>
</p>
<p class="about">Passionate web developer and content creator</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org" target="_blank" title="First Resource">freecodecamp</a>
</li>
<li>
<a href="https://dev.to" target="_blank" title="Second Resource">DEV</a>
</li>
<li>
<a href="https://devdocs.io" target="_blank" title="Third resource">Devdocs</a>
</li>
</ul>
</div>
</div>
<!-- ________ SOHAM Contributor card END ________ -->
<!-- ________ Devesh Shukla Contributor card START ________ -->
<div class="card">
<p class="name">Devesh Shukla</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/imdeveshshukla/" target="_blank">Devesh</a>
<i class="fab fa-github"></i>
<a href="https://github.com/imdeveshshukla" target="_blank">imdeveshshukla</a>
</p>
<p class="about">I am a student of First year of MCA. My ambition is to become a full-stack web developer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank" title="CSS Resource">CSS Resource</a>
</li>
<li>
<a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/" target="_blank" title="css-tricks">
CSS FlexBox Tricks
</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Dm tool">GeeksForGeeks</a>
</li>
</ul>
</div>
</div>
<!-- ________ Devesh Shukla Contributor card END ________ -->
<!-- ________ Richu Sony Contributor card START ________ -->
<div class="card">
<p class="name">Richu Sony</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/richu-sony/" target="_blank">LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/richusony/" target="_blank">GitHub</a>
</p>
<p class="about">👋 Hello, I'm Richu Sony! 🚀 Full-Stack Web Developer | JavaScript Enthusiast</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="GeeksforGeeks">GeeksforGeeks</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Docs">MDN Docs</a>
</li>
<li>
<a href="https://www.npmjs.com/" target="_blank" title="npmjs">npmjs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Richu Sony Contributor card END ________ -->
<!-- ________ Angel Darco Contributor card START ________ -->
<div class="card">
<p class="name">Angel Darco</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/AngelDarco" target="_blank">@AngelDarco </a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/angeldarco/" target="_blank">@angeldarco </a>
</p>
<p class="about">Hi, Angel here, I am a very experimented front-end developer, just seeking for a new challenge.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="First Resource">MDN</a>
</li>
<li>
<a href="https://you.com/" target="_blank" title="Second Resource">You.com</a>
</li>
<li>
<a href="https://chat.openai.com/" target="_blank" title="Third resource">ChatGPT</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ Charvi Contributor card START ________ -->
<div class="card">
<p class="name">Charvi</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/charviupreti/" target="_blank">LinkedIN</a>
<i class="fab fa-github"></i>
<a href="https://github.com/charviupreti" target="_blank">GitHub</a>
</p>
<p class="about">Coding enthusiast - currently exploring open source.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Charvi Contributor card END ________ -->
<!-- ________ Sudhanshu Tripathi Contributor card START ________ -->
<div class="card">
<p class="name">Sudhanshu Tripathi</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sudhanshu-tripathi77/" target="_blank">LinkedIN</a>
<i class="fab fa-github"></i>
<a href="https://github.com/sudhanshu-77" target="_blank">Github</a>
</p>
<p class="about">Hi! My name is Sudhanshu I am Full-Stack enthusiast and Exploring Opensource.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="First Resource">freecodecamp</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Second Resource">GeeksforGeeks</a>
</li>
<li>
<a href="https://chat.openai.com" target="_blank" title="Third resource">ChatGPT</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sudhanshu Tripathi Contributor card END ________ -->
<!-- ________ Paul Webo Contributor card START ________ -->
<div class="card">
<p class="name">Paul Webo</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/paul-webo-910886248/" target="_blank">Paul</a>
<i class="fab fa-github"></i>
<a href="https://github.com/xi9d" target="_blank">Xi9d</a>
<i class="fab fa-youtube"></i>
<a href="https://www.youtube.com/@foxbash" target="_blank">Foxbash</a>
</p>
<p class="about">
Hi 😊 am Paul Webo, am a kenyan based programmer who loves to code. Am pretty good in JAVA🍵 and its frameworks and created some projects. Now am shifting to the side or python and a little in quantum computing. I believe in science and that it grows. For me
languages are just ways i express that. I have a youtube channel so maybe you could check that out
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://mega.nz/folder/xVBinJoC#IQ0QzdSLL-lb7VVTY7XbSQ" target="_blank" title="First Resource">All code with mosh videos</a>
</li>
<li>
<a href="https://nevonprojects.com/project-ideas/software-project-ideas/" target="_blank" title="Second Resource">Project ideas for anyone to try</a>
</li>
<li>
<a href="https://mega.nz/folder/DtARzS5I#D5it7IBEfT9vSJktGAs3aw" target="_blank" title="Third resource">Thank me later 🕸️</a>
</li>
</ul>
</div>
</div>
<!-- ________ Paul Webo Contribution🚀 ________ -->
<!-- ========= k8pai's contribution ========= -->
<div class="card">
<p class="name">Sudarsan K Pai</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/k8pai" target="_blank">@k8pai</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/k8pai" target="_blank">k8pai</a>
<i class="fab fa-linkedin"></i>
<a href="https://linkedin.com/in/k8pai" target="_blank">k8pai</a>
</p>
<p class="about">Full stack developer with a knack for CLI projects, extensions, and web apps, constantly push</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://liveblocks.io" target="_blank" title="First Resource">liveblocks.io</a>
</li>
<li>
<a href="https://github.com/k8pai/nextauth-cli" target="_blank" title="Second Resource">nextauth-cli</a>
</li>
<li>
<a href="https://tailwind-inputs.vercel.app" target="_blank" title="Third resource">tailwind-inputs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditya Gaikwad Contributor card START ________ -->
<div class="card">
<p class="name">Aditya Gaikwad</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/aditya--gaikwad" target="_blank">aditya--gaikwad </a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/dev_adityag" target="_blank">dev_adityag</a>
<i class="fab fa-github"></i>
<a href="https://github.com/aaadityag" target="_blank">aaadityag</a>
</p>
<p class="about">A Fullstack enthusiast with the interest of open source contributions...</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.sololearn.com/profile" target="_blank" title="First Resource"> Sololearn(Website) </a>
</li>
<li>
<a href="https://wildlearner.com/" target="_blank" title="Second Resource"> Wildlearner(Website) </a>
</li>
<li>
<a href="https://coddy.tech/" target="_blank" title="Third resource"> Coddy(Website) </a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditya Gaikwad Contributor card START ________ -->
<!-- ________ Bindu Sri Contributor card START ________ -->
<div class="card">
<p class="name">Bindu Sri</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/BinduSr50133873" target="_blank">Bindu Sri</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Bindusrinaik04" target="_blank">Bindusrinaik04</a>
</p>
<p class="about">A Tech Enthusiast with the interest in Programming,open source contribution...</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="First Resource">freecodecamp.org</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Second Resource">GeeksforGeeks</a>
</li>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Third resource">roadmap.sh</a>
</li>
</ul>
</div>
</div>
<!-- ________ Nathaniel Joseph Contributor card START ________ -->
<div class="card">
<p class="name">Nathaniel Joseph</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/nathaniel-joseph-8b172a291/" target="_blank">Nathaniel Joseph</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/nathanCodes05" target="_blank">@nathanCodes05</a>
<i class="fab fa-github"></i>
<a href="https://github.com/joeCodes05" target="_blank">joeCodes05</a>
</p>
<p class="about">Fullstack developer with 3years of experience. Based in Nigeria, available for remote and freelance jobs</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freeCodeCamp.org" target="_blank" title="First Resource">Freecodecamp</a>
</li>