forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1412 lines (1348 loc) · 51.3 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>
<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="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<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" />
<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.4.0/jquery.min.js"></script>
</div>
<!-- / Night Mode Creation -->
</div>
</div>
<div class="row">
<div class="double-column">
<div class="left-column">
<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"
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="right-column">
<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="grid">
<!-- ============================================================== -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- make sure there is one line of space above and below your card -->
<!-- ________ *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="www.twitter.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>
<!-- ________*END 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 -->
<!-- make sure there is one line of space above and below your card -->
<!-- ========== ⬇⬇ Paste YOUR CARD directly BELOW this line ⬇⬇ ========== -->
<!-- ________ Salil's card START ________ -->
<div class="card">
<p class="name">Salil Chincholikar</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com/oksalil" target="_blank">oksalil</a>
<i class="fab fa-github"></i>
<a href="www.github.com/chincholikarsalil" target="_blank">chincholikarsalil</a>
</p>
<p class="about">
DevOps, Data Science, Programming and Cyber Security enthusiast | Guitarist and Metalhead\m/
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://docs.microsoft.com/en-us/learn/" target="_blank" title="Microsoft Learn">
Microsoft Learn - Everything from C to Cloud
</a>
</li>
<li>
<a href="https://www.coursera.org" target="_blank" title="Coursera">
Coursera - Top-notch courses
</a>
</li>
<li>
<a href="https://www.hackerrank.com" target="_blank" title="HackerRank">
HackerRank - Coding from basics to hard
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Salil's card END ________ -->
<!-- ________ *Kayla's card START ________ -->
<div class="card">
<p class="name">Kayla Alewine</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/kalewine" target="_blank">kalewine</a>
</p>
<p class="about">
I am a middle school science teacher working through a career change into the field of
webdevelopment. I love yoga, hiking, reading and cooking.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/" target="_blank"
title="Demystify CSS flexbox">
Demystify CSS flexbox-A complete guide to flexbox thanks to CSS Tricks!</a>
</li>
<li>
<a href="https://uigradients.com" target="_blank" title="A nifty CSS gradients color tool">
UIGradients-a nifty CSS gradients color tool</a>
</li>
<li>
<a href="https://unsplash.com/" target="_blank" title="freely-usable photos for your web design projects">
Unsplash-freely usable photos for your web dev projects</a>
</li>
</ul>
</div>
</div>
<!-- ________Kayla's card END ________ -->
<!-- ________ Contributor's card START ________ -->
<div class="card">
<p class="name">Scott Jellen</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.linkedin.com/in/sjellen/" target="_blank">SJellen</a>
</p>
<p class="about">
Front-end developer || Web developer || Career changer
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://colorhunt.co" target="_blank" title="First Resource">
Color Hunt: Color Palettes for Designers and Artists
</a>
</li>
<li>
<a href="https://www.npmjs.com/package/readme-md-generator" target="_blank" title="Second Resource">
Make your repos look good with readme-md-generator
</a>
</li>
<li>
<a href="https://iconmonstr.com/" target="_blank" title="Third resource">
IconMonstr
</a>
</li>
</ul>
</div>
</div>
<!--______________________Scott Card end_______________ -->
<!-- ________ Maggie's card START ________ -->
<div class="card">
<p class="name">Maggie Chu</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/maggiechuu/" target="_blank">@maggiechuu</a>
</p>
<p class="about">
Recent Computer Science grad + Associate Product Manager. Love creative programming.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.codementor.io/javascript-projects" target="_blank" title="Javascript Projects">
Learn programming with curated JavaScript projects at DevProjects
</a>
</li>
<li>
<a href="https://www.codementor.io/python-projects" target="_blank" title="Python Projects">
Learn programming with curated Python projects at DevProjects
</a>
</li>
<li>
<a href="https://www.codementor.io/nodejs-projects" target="_blank" title="Nodejs Projects">
Learn programming with curated Node.js projects at DevProjects
</a>
</li>
</ul>
</div>
</div>
<!-- ________ steezy104 contributor's card START ________ -->
<div class="card">
<p class="name">steezy104</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/wrabbermann" target="_blank">@WRabbermann</a>
</p>
<p class="about">
Self taught programmer attending college at fuck off university. Majoring in Computer Science.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="freeCodeCamp">
freeCodeCamp Curriculum
</a>
</li>
<li>
<a href="https://www.learncpp.com/" target="_blank" title="learncpp">
Learn C++
</a>
</li>
<li>
<a href="https://www.google.com/" target="_blank" title="Google">
Google
</a>
</li>
</ul>
</div>
</div>
<!-- ________ steezy104's card END ________ -->
<!-- ________ Lucia's card START ________ -->
<div class="card">
<p class="name">Lucia Mezquida</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/LuciaMezquida/" target="_blank">Lucia Mezquida</a>
</p>
<p class="about">
Frontend developer in the present. Pharmacist in the past. Enthusiastic of coding, snowboarding and
cats.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="//dev.to/rahxuls/free-ultimate-resources-for-front-end-development-in-2021-giveaway-3838?utm_source=digest_mailer&utm_medium=email&utm_campaign=digest_email"
target="_blank" title="Frontend resources 2021">
Resources for Frontend development in 2021
</a>
</li>
<li>
<a href="//www.freecodecamp.org/news/fetch-api-cheatsheet/" target="_blank" title="Fetch api cheatsheet">
The Fetch API Cheatsheet: Nine of the Most Common API Requests
</a>
</li>
<li>
<a href="//www.frontendmentor.io/" target="_blank" title="Frontend Mentor">
Frontend Mentor
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Lucia's card END ________ -->
<!-- ________ Philip's card START ________ -->
<div class="card">
<p class="name">Philip</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/PhilOh_K" target="_blank">@PhilOh_K</a>
<i class="fab fa-github"></i>
<a href="https://github.com/philip-hobobo" target="_blank">@philip-hobobo</a>
</p>
<p class="about">
Developing Web Developer. Studying HTML, CSS, and Python at the moment. I have a passion for
languages as well and I am learning Spanish at the moment. Espero que todos aquí tengan un buen día!
Love Japan as well. Any random facts about Japan, manga or anime recommendations, don't be afraid to
reach out!
</p>
<div class="resources">
<a href="https://learngitbranching.js.org/" target="_blank" title="Learn Git Branching">
Learn Git Branching
</a>
</li>
<li>
<a href="https://websitesetup.org/css3-cheat-sheet/" target="_blank" title="CSS Cheat Sheet">
CSS Cheat Sheet
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=1BPQj438FyQ" target="_blank"
title="How to Become a Web Developer in 2020">
Ben Awad-How to Become a Web Developer in 2020
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Philip's card END ________ -->
<!-- ________ Morgan's card START ________ -->
<div class="card">
<p class="name">Morgan Moreno</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/morganmoreno444/" target="_blank">Morgan Moreno</a>
</p>
<p class="about">
Self taught software developer. Basketball & video game junkie. Nature enthusiast. Always looking to
learn something new.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://devdocs.io/" target="_blank" title="DevDocs">
Documentation Galore
</a>
</li>
<li>
<a href="https://www.theodinproject.com" target="_blank" title="The Odin Project">
The Odin Project
</a>
</li>
<li>
<a href="https://www.youtube.com/user/TechGuyWeb" target="_blank" title="Traversy Media (Youtube)">
Traversy Media (Youtube Channel)
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Morgan's card END ________ -->
<!-- ________ Mero's card START ________ -->
<div class="card">
<p class="name">Iqbal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com/iqballerr" target="_blank">@iqballerr</a>
</p>
<p class="about">
Undergraduate student at UC Irvine pursuing a B.S. in Software Engineering.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://realpython.com/python-pep8/" target="_blank"
title="How to write beautiful Python code with PEP 8.">
Realpython
</a>
</li>
<li>
<a href="https://www.genmymodel.com/use-case-diagram-online/" target="_blank"
title="Create use case diagrams in seconds with GenMyModel, a free uml online tool to draw UML diagrams.">
GenMyModel
</a>
</li>
<li>
<a href="https://www.digitalcitizen.life/command-prompt-how-use-basic-commands/" target="_blank"
title="CMD: 11 basic commands you should know (cd, dir, mkdir, etc.)">
DigitalCitizen
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Contributor's card END ________ -->
<!-- ________ Lemonbrush's card START ________ -->
<div class="card">
<p class="name">Lemonbrush</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Lemonbrusher" target="_blank">@Lemonbrusher</a>
</p>
<p class="about">
Future super cool iOS Developer who is going to be the pirate king!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/Lemonbrush/My-iOS-Dev-Learning-Tracker" target="_blank"
title="Huge repo with useful stuff about iOS dev">
Huge repo with useful stuff about iOS dev
</a>
</li>
<li>
<a href="https://learngitbranching.js.org/?locale=ru_RU" target="_blank"
title="The best place to learn how to use Git">
The best place to learn how to use Git
</a>
</li>
<li>
<a href="https://www.hackerrank.com" target="_blank"
title="The best place to learn algorithms and solve problems">
The best place to learn algorithms and solve problems
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Lemonbrush's card END ________ -->
<!-- ________ Contributor's card START ________ -->
<div class="card">
<p class="name">Dali-codes</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Dali_codes" target="_blank">@Dali_codes</a>
</p>
<p class="about">
Business Consultant transforming into front-end developer | Passionate about UX and EX | Bringing
ideas to life
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://css-tricks.com/" target="_blank" title="This is a link to many useful CSS tips & tricks">
CSS tricks
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UC29ju8bIPH5as8OGnQzwJyA" target="_blank"
title="This is a link to Traversy Media with great content for learning developers">
Traversy Media
</a>
</li>
<li>
<a href="https://syknapse.github.io/Contribute-To-This-Project/" target="_blank"
title="Follow this link to learn how to contribute to a project on Github">
Contribute to a project on Github
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Contributor's card END ________ -->
<!-- ________ Contributor's card START ________ -->
<div class="card">
<p class="name">Edwin</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/ebedoya/" target="_blank">ebedoya</a>
</p>
<p class="about">
Undergraduate student from University of Petroleum and Energy Studies pursuing B.Tech in Computer
Science specialising in DevOps.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/" target="_blank" title="MDN Web Docs">
MDN Web Docs
</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools Resources">
W3schools
</a>
</li>
<li>
<a href="https://www.programiz.com/java-programming/hello-world" target="_blank" title="Programiz">
Java Learning
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Contributor's card END ________ -->
<!-- ________ Shreya's card START ________ -->
<div class="card">
<p class="name">Shreya Purohit</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/shreyalivee" target="_blank">@shreyalivee</a>
</p>
<p class="about">
I am a sophomore who loves to code and build productive web applications to help myself and others.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/microsoft/Web-Dev-For-Beginners" target="_blank"
title="Learn Web Development (Microsoft)">
Get Started as a Web Developer (Microsoft)
</a>
</li>
<li>
<a href="https://developers.google.com/edu/python" target="_blank" title="Learn Python for Free (Google)">
Learn Python for Free (Google)
</a>
</li>
<li>
<a href="https://talkpython.fm/episodes/all" target="_blank" title="Podcast: Talk Python to Me">
Podcast: Talk Python to Me
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shreya's card END ________ -->
<!-- ________ Pranav's card START ________ -->
<div class="card">
<p class="name">Pranav Singh</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/pranav-singh-00904b1bb/" target="_blank">Pranav Singh</a>
<i class="fab fa-github"></i>
<a href="https://github.com/theBeginner86" target="_blank">@theBeginner86</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/theBeginner86" target="_blank">@theBeginner86</a>
</p>
<p class="about">
Pursuing engineering degree from VIT Vellore, India.
Loves to observe nature and people. Right now learning Web Development and fascinated by the word
"Open Source".
Looking to meet new people and gain more experience.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/CodeforCause" target="_blank" title="First Resource">
Code For Cause (Youtube Channel)
</a>
</li>
<li>
<a href="https://github.com/Syknapse/Contribute-To-This-Project" target="_blank" title="Second Resource">
Contribute-To-This-Project (Github Project)
</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Third resource">
MDN (Best place to learn WEB DEV)
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Pranav's card END ________ -->
<!-- ________ Anderson's card START ________ -->
<div class="card">
<p class="name">Anderson</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/anderson-m-souza" target="_blank">anderson-m-souza</a>
</p>
<p class="about">
I like to grow my own food. Sou brasileiro.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://web.dev/learn/" target="_blank" title="Learn best practices for the modern web.">
Learn
</a>
</li>
<li>
<a href="https://www.w3schools.com/howto/howto_css_aspect_ratio.asp" target="_blank"
title="Learn how to maintain the aspect ratio of an element with CSS.">
How To - Aspect Ratio / Height Equal to Width
</a>
</li>
<li>
<a href="https://youtu.be/3wa09yTuEWU" target="_blank"
title="A list of projects to build and put in your resume.">
5 Projects That will Guarantee You Get Hired
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Anderson's card END ________ -->
<!-- ________ Brody's card START ________ -->
<div class="card">
<p class="name">Brody</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="link to your twitter handle" target="_blank">@Brody27W</a>
</p>
<p class="about">
I am a cool person.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/Syknapse/Contribute-To-This-Project" target="_blank"
title="Contribute-To-This-Project">
Contribute-To-This-Project
</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Youtube">
Youtube
</a>
</li>
<li>
<a href="https://google.dev/" target="_blank" title="Google Dev">
Google Dev
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Brody's card END ________ -->
<!-- ________ Novice's card START ________ -->
<div class="card">
<p class="name">Novice</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/noviicee" target="_blank">noviicee</a>
</p>
<p class="about">
Just a newbie trying to learn a lot :)
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/html/" target="_blank" title="HTML Tutorial">
Link for learning the basics of HTML
</a>
</li>
<li>
<a href="https://www.w3schools.com/css/default.asp" target="_blank" title="CSS Tutorial">
Link for learning the basics of CSS
</a>
</li>
<li>
<a href="https://www.w3schools.com/python/default.asp" target="_blank" title="Python Tutorial">
Python tutorial in case you want to try something new :)
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Novice's card END ________ -->
<!-- ________ Tina's Contributor's card START ________ -->
<div class="card">
<p class="name">Tina Myers</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/tinalmyers/" target="_blank">Tina Myers</a>
<i class="fab fa-github"></i>
<a href="https://github.com/myerstina515" target="_blank">@myerstina515</a>
</p>
<p class="about">
Software developer, previously worked in physical therapy in a nursing home in the Seattle, WA area.
Lots of interesting stories to share! Primary Languages: JavaScript, MERN stack, redux, AWS,
postreSQL, material-UI, bootstrap, react Native, Angular
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.editpad.org/" target="_blank" title="Edit Pad">
Edit pad: Fixes formatting of decorated text
</a>
</li>
<li>
<a href="https://rapidapi.com/alanaktion/api/faker" target="_blank" title="Rapid API">
Rapid API: fake API for testing
</a>
</li>
<li>
<a href="#https://www.npmjs.com/package/bcrypt" target="_blank" title="bcrypt">
Bcrypt npm package for encryption
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Contributor's card END ________ -->
<!-- ________ Shikha's card START ________ -->
<div class="card">
<p class="name">Shikha</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/home" target="_blank">@ShikhaS55977060</a>
</p>
<p class="about">
This is Shikha ,I am pursuing my B.Tech Computer Science Engineering .I am just start learning the
essential thing in my field ,
<i>GitHub</i> is one of them.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.udemy.com/share/103RbmAEAbc1pVQHkF/" target="_blank"
title="Front-end Web Developement">
Unedmy
</a>
</li>
<li>
<a href="https://youtu.be/EceJQ05KTf4" target="_blank" title="INtroduction to Web Developement">
youtube
</a>
</li>
<li>
<a href="https://www.coursera.org/" target="_blank" title="html and css">
coursera
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shikha's card END ________ -->
<!-- ________ Kushal's card START ________ -->
<div class="card">
<p class="name">Kushal Das</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Kushal997-das" target="_blank">Kushal997-das</a>
</p>
<p class="about">
Mentor @ The Sparks Foundation. Python developer👨💻 || Data science enthusiastic|| Competitive
programmer.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/Kushal997-das/Project-Guidance" target="_blank"
title="Contribute-To-This-Project">
Contribute to this repository
</a>
</li>
<li>
<a href="https://github.com/Kushal997-das/Hackerrank" target="_blank"
title="Python important questions and answers">
HackerRank solved questions
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=BCQHnlnPusY&list=PLozRqGzj97d02YjR5JVqDwN2K0cAiT7VK"
target="_blank" title="Learn git and github from scratch">
Learn git-tutorial from scratch.
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Kushal's card END ________ -->
<!-- ________ Surbhi's card START ________ -->
<div class="card">
<p class="name">Surbhi Mayank</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/surbhi2408" target="_blank">surbhi2408</a>
</p>
<p class="about">
Flutter Developer || Competitive programmer || Java enthusiastic.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/surbhi2408/CSES-problem-set-solution" target="_blank"
title="CSES-problem-set-solution">
Solutions to CSES problem sets.
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=BCQHnlnPusY&list=PLozRqGzj97d02YjR5JVqDwN2K0cAiT7VK"
target="_blank" title="Learn git and github from scratch">
Learn git-tutorial from scratch.
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=YYXdXT2l-Gg&list=PL-osiE80TeTt2d9bfVyTiXJA-UTHn6WwU"
target="_blank" title="Learn python from scratch">
Learn python from scratch.
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Surbhi's card END ________ -->
<!-- ________ Alka's card START __________ -->
<div class="card">
<p class="name">Alka Das</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/AlkaDas991" target="_blank">AlkaDas991</a>
</p>
<p class="about">
JAVA,C++ PROGRAMMER || Quarter way to Web Developer || Curious Learner
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners" target="_blank"
title="An Intro to Git and Github for Beginners">
An Intro to Git and Github for Beginners
</a>
</li>
<li>
<a href="https://a2oj.com/ladders" target="_blank" title="A2OJ Ladders - Practice Coding">
A2OJ ladders to practice Coding
</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Reference for Web development">
Reference for Web-dev
</a>
</li>
</ul>
</div>
</div>
<!-- _________ Alka's Card END ____________ -->
<!-- ________ Augusto's card START ________ -->
<div class="card">
<p class="name">Augusto Arraes</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="www.github.com/gutoarraes" target="_blank">gutoarraes</a>
</p>
<p class="about">
Hi, I have a goal of buying my first house in 2021.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://codepen.com/" target="_blank" title="First Resource">
Codepen
</a>
</li>
<li>
<a href="https://projecteuler.net/" target="_blank" title="Second Resource">
Project Euler
</a>
</li>
<li>
<a href="https://scratch.mit.edu/" target="_blank" title="Third resource">
Scratch
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Augusto's card END ________ -->
<!--______ Aman card START___________-->
<div class="card">
<p class="name">Aman</p>
<p class="contact"></p>
<p class="about">
I am new to open source contribution and learning it.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stackoverflow">
Stackoverflow
</a>
</li>
<li>
<a href="https://github.com/MunGell/awesome-for-beginners" target="_blank" title="Github MunGell project">
The MunGell project on Github
</a>
</li>
</ul>
</div>
</div>
<!--______ Aman card END___________-->
<!-- ________ bmunz.dev card START ________ -->
<div class="card">
<p class="name">Bernardo Munz</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/moonbe77" target="_blank">@moonbe77</a> |
<i class="fab fa-github"></i>
<a href="https://github.com/moonbe77" target="_blank">Bernardo Munz</a>
</p>
<p class="about">
Hello there I am Bernardo, I am a future web developer, I'm trying to change my career into web
developing, I being studying and doing some web project for the last 5 years just for fun but now is
time to dedicate full time to this amazing world.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.notion.so/" target="_blank" title="Notion">
Notion - Write, plan, and get organized.
</a>
</li>
<li>
<a href="https://www.w3schools.com" target="_blank" title="Second Resource">
W3 Schools
</a>
</li>
<li>
<a href="https://wesbos.com/" target="_blank" title="https://wesbos.com/">
Wes Bos
</a>
</li>
</ul>
</div>
</div>
<!-- ________ bMunz.dev card END ________ -->
<!-- ________ Cliver's card START ________ -->
<div class="card">
<p class="name">Cliver</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Miranda20" target="_blank">Miranda20</a>
</p>
<p class="about">
I am a programming student passionate about frontend technologies, I have participated in
programming contests of the ACM ICPC.
</p>