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
4034 lines (3943 loc) · 132 KB
/
index.html
File metadata and controls
4034 lines (3943 loc) · 132 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="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 ⬇⬇ ========== -->
<!-- ________ Janhavi-2001's Contributor card START ________ -->
<div class="card">
<p class="name">Janhavi Pimplikar</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Janhavi-2001" target="_blank">Janhavi-2001</a>
</p>
<p class="about">I'm currently a Computer Engineering junior at Pimpri-Chinchwad College of Engineering, Pune. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Learn to code for free">
freeCodeCamp
</a>
</li>
<li>
<a href="https://www.udemy.com/course/the-complete-web-development-bootcamp/" target="_blank" title="Beginner to pro in just one course">
The Complete 2021 Web Development Bootcamp - Udemy
</a>
</li>
<li>
<a href="https://docs.microsoft.com/en-us/learn/paths/web-development-101/" target="_blank" title="Microsoft learning path">
Web Development for Beginners - Microsoft Learn
</a>
</li>
</ul>
</div>
</div>
<!-- ________Janhavi-2001's Contributor card END ________ -->
<!-- ________ Deepika Uchil's Contributor card START ________ -->
<div class="card">
<p class="name">Deepika Uchil</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/ThePika90" target="_blank">ThePika90</a>
<i class="fab fa-github"></i>
<a href="https://github.com/UchilDeepika" target="blank"
>UchilDeepika</a>
</p>
<p class="about">I am a 30 year old currently working on .NET desktop application hoping to switch to web
development soon.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com" target="_blank" title="Unlimited Resources">
YouTube
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Answer to all Questions">
Stackoverflow
</a>
</li>
<li>
<a href="https://leetcode.com/" target="_blank" title="For Solving Coding Problems">
LeetCode
</a>
</li>
</ul>
</div>
</div>
<!-- ________Deepika Uchil's Contributor card END ________ -->
<!-- ________ Egidijus Luinevicius's Contributor card START ________ -->
<div class="card">
<p class="name">Egidijus Luinevicius</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/EgidijusLu" target="_blank"
>EgidijusLu</a
>
|
<i class="fab fa-github"></i>
<a href="https://github.com/EgidijusLu" target="blank"
>EgidijusLu</a
>
</p>
<p class="about">
I'm 35yo self-taught web dev(well, not yet, but dreaming big). Love
tech. Love the philosophy of Alan Watts.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.freecodecamp.org/"
target="_blank"
title="Learn code for free"
>
FreeCodeCamp
</a>
</li>
<li>
<a
href="https://www.w3schools.com/"
target="_blank"
title="Official documentation"
>
w3schools
</a>
</li>
<li>
<a
href="https://www.frontendmentor.io/"
target="_blank"
title="Awesome way to check your knowledge"
>
Frontendmentor
</a>
</li>
</ul>
</div>
</div>
<!-- ________Egidijus Luinevicius's Contributor card END ________ -->
<!-- ________ Prajwal's card START ________ -->
<div class="card">
<p class="name">Prajwal Prakash</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/prakash_prajwal" target="_blank"
>@prakash_prajwal</a
>
</p>
<p class="about">
I am a freshman Computer Science Student Learning to develop preety
sustianable solutions.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.freecodecamp.org/"
target="_blank"
title="Learn code for free"
>
FreeCodeCamp
</a>
</li>
<li>
<a
href="https://www.w3schools.com/"
target="_blank"
title="Official documentation"
>
w3schools
</a>
</li>
<li>
<a
href="https://www.freecodecamp.org"
target="_blank"
title="First Step to coding"
>
Free Code Camp
</a>
</li>
<li>
<a
href="https://www.coursera.org/in"
target="_blank"
title="Advanced Resource"
>
Coursera
</a>
</li>
<li>
<a
href="https://www.youtube.com"
target="_blank"
title="plethora of resources"
>
YouTube
</a>
</li>
</ul>
</div>
</div>
<!-- ________Prajwal's card END ________ -->
<!-- ________ blue-putty's card START ________ -->
<div class="card">
<p class="name">Blue Putty</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/blue-putty" target="_blank"
>blue-putty</a
>
</p>
<p class="about">Learning Git :D</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.youtube.com/user/TechGuyWeb"
target="_blank"
title="First Resource"
>
Traversy Media YouTube Channel
</a>
</li>
<li>
<a
href="https://stackoverflow.com/"
target="_blank"
title="Second Resource"
>
Sort of like a forum; programming questions & answers
</a>
</li>
<li>
<a
href="https://developer.mozilla.org/en-US/"
target="_blank"
title="Third resource"
>
Mozilla web docs
</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* blue-putty's card END ________ -->
<!-- Olawale Contributor's card START ________ -->
<div class="card">
<p class="name">Olawale Akewushola</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/olarcee" target="_blank">@olarcee</a>
</p>
<p class="about">
A Web developer primarily working with Javascript, I make responsive
websites designs optimize for both web and mobile.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://youtube.com/freeCodeCamp"
target="_blank"
title="Free code camp"
>
Free Code Camp
</a>
</li>
<li>
<a
href="https://youtube.com/thenetninja"
target="_blank"
title="Net Ninja"
>
The Net Ninja
</a>
</li>
<li>
<a
href="https://exploringjs.com/Impatient-js"
target="_blank"
title="Impatient Javascript"
>
Impatient Javascript
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Contributor's card END ________ -->
<!-- ________ HareerSakhi's Contributor card START ________ -->
<div class="card">
<p class="name">HareerSakhi</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/HareerSakhi" target="_blank"
>HareerSakhi</a
>
</p>
<p class="about"></p>
<ul>
<li>HUGE Harry Potter fan</li>
<li>Hopeful web and app developer</li>
<li>True science lover</li>
<li>A football-watching frenzy</li>
</ul>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.w3schools.com/"
target="_blank"
title="First Resource"
>
w3schools - An online website which contains tutorials on
nearly every language you can name, tests and practices.
</a>
</li>
<li>
<a
href="https://html.com/wp-content/uploads/html-cheat-sheet.pdf"
target="_blank"
title="Second Resource"
>
A HTML cheatsheet which is really clear, contains examples and
explanations on each element in HTML and is really useful.
</a>
</li>
<li>
<a
href="https://www.codewars.com/"
target="_blank"
title="Third resource"
>
Codewars - This provides users with many brainy katas at
different levels to really test you!
</a>
</li>
</ul>
</div>
</div>
<!-- ________HareerSakhi's Contributor card END ________ -->
<!-- Collins Boit Contributor Card START -->
<div class="card">
<p class="name">Collins Boit</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/l00pinfinity" target="_blank"
>Collins Boit</a
>
|
<i class="fab fa-github"></i>
<a href="https://github.com/l00pinfinity" target="_blank"
>l00pinfinity</a
>
</p>
<p class="about">
A student pursuing Software Developement and I love linux. Let's
connect.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.vogella.com/tutorials/android.html"
target="_blank"
title="First Resource"
>
ANDROID DEVELOPMENT TUTORIALS
</a>
</li>
<li>
<a
href="https://unsplash.com/"
target="_blank"
title="Second Resource"
>
The internet’s source of freely-usable images.
</a>
</li>
<li>
<a
href="https://jsbeginners.com/javascript-projects-for-beginners/"
target="_blank"
title="Third resource"
>
100+ JavaScript Projects for Beginners!
</a>
</li>
</ul>
</div>
</div>
<!-- Collins Boit Contributor Card END -->
<!-- ________ Shivam,'s card START ________ -->
<div class="card">
<p class="name">Shivam Gupta</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="http://github.com/shivam-0510" target="_blank"
>Shivam Gupta</a
>
</p>
<p class="about">
Student || Front-end dev
<br />
<br />
Find me on
<a href="https://twitter.com/05_guptashivam" target="_blank"
>Twitter</a
>
or
<a href="www.linkedin.com/in/shivam-gupta-3628641bb" target="_blank"
>LinkedIn</a
>
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://iconscout.com/"
target="_blank"
title="Icon Scout"
>
Best market for illustration that can help any web-dev out
there.
</a>
</li>
<li>
<a
href="https://collectui.com/"
target="_blank"
title="Second Resource"
>
If you ever need inspiration or ideas for a new project I
suggest CollectiveUi
</a>
</li>
<li>
<a
href="https://www.canva.com/"
target="_blank"
title="Third resource"
>
For those who need a logo.
</a>
</li>
</ul>
</div>
</div>
<!-- ________Shivam's card END ________ -->
<!-- ________ *TEMPLATE: leonardo benicio card START ________ -->
<div class="card">
<p class="name">Leonardo Benicio</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com/lbenicio_" target="_blank">lbenicio_</a>
</p>
<p class="about">
Backend Developer, DevOps and data science researcher and amauter
security researcher
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="#"
target="https://www.cs.princeton.edu/~rs/"
title="First Resource"
>
Robert Sedgewick resources on algorithms
</a>
</li>
<li>
<a
href="#"
target="https://www.cs.dartmouth.edu/~thc/"
title="Second Resource"
>
Thomas H. Cormen resources on Introduction to algorihms
</a>
</li>
<li>
<a
href="#"
target="https://ee.caltech.edu/people/yaser"
title="Third resource"
>
Yaser S. Abu-Mostafa resources on Learning from data
</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* leonardo benicio card END ________ -->
<!-- ________ Suraj's card START ________ -->
<div class="card">
<p class="name">Suraj Sarangi</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="http://github.com/SurajSarangi" target="_blank"
>SurajSarangi</a
>
</p>
<p class="about">
Engineer || Front-end dev || Back-end dev || Data scientist
<br />
<br />
Find me on
<a href="https://twitter.com/_suraj_sarangi" target="_blank"
>Twitter</a
>
or
<a href="http://linkedin.com/in/surajsarangi" target="_blank"
>LinkedIN</a
>
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.youtube.com/playlist?list=PL4cUxeGkcC9ivBf_eKCPIAYXWzLlPAm6G"
target="_blank"
title="HTML & CSS tutorial"
>
HTML and CSS tutorial
</a>
</li>
<li>
<a
href="https://www.youtube.com/playlist?list=PLillGF-RfqbZ7s3t6ZInY3NjEOOX7hsBv"
target="_blank"
title="ES6 tutorial"
>
Javascipt ES6
</a>
</li>
<li>
<a
href="https://www.youtube.com/playlist?list=PLillGF-RfqbbpWowfjk9_Vv8XUuTBFPut"
target="_blank"
title="Bootstrap for templates"
>
Bootstrap and SASS
</a>
</li>
</ul>
</div>
</div>
<!-- ________Suraj's card END ________ -->
<!-- ________ Moody's card START ________ -->
<div class="card">
<p class="name">Moody Omar</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a
href="https://www.linkedin.com/in/mohammad-shihab-40b1281a2/"
target="_blank"
>Moody</a
>
</p>
<p class="about">
I’m simply self motivated, super positive and ambitious guy with a
deep passion for the Tech World Ohsince forever. Oh and I love to
travel.
</p>
<div class="resources">
<p>3 Useful Dev Resources:</p>
<ul>
<li>
<a
href="https://www.linkedin.com/learning/"
target="_blank"
title="First Resource"
>
Lynda.com + LinkedIn Learning
</a>
</li>
<li>
<a
href="https://developer.mozilla.org/en-US/"
target="_blank"
title="Second Resource"
>
MDN Web Docs (free)
</a>
</li>
<li>
<a
href="https://www.codewars.com/"
target="_blank"
title="Third resource"
>
Codewars
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Moody's card END ________ -->
<!-- ________ Tim David Harris card START ________ -->
<div class="card">
<p class="name">Tim David Harris</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/timdavidharris" target="_blank"
>timdavidharris</a
>
</p>
<p class="about">
I am a self-taught developer who is
<a href="https://timdavidharrisdev.blogspot.com/">blogging</a>
about my journey towards landing my first tech job. I enjoy playing
board games with my family and friends.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.appbrewery.co/"
target="_blank"
title="Angela Yu"
>
Angela Yu's Courses - Paid Self-Paced Courses
</a>
</li>
<li>
<a
href="https://www.theodinproject.com/about"
target="_blank"
title="The Odin Project"
>
The Odin Project - Open Source Web Dev Curriculum
</a>
</li>
<li>
<a
href="https://frontendmasters.com/books/front-end-handbook/2019/#1"
target="_blank"
title="Front-end Developer Handbook"
>
Front-end Developer Handbook (2019) - Free ebook
</a>
</li>
</ul>
</div>
</div>
<!-- ________Tim David Harris card END ________ -->
<!-- ________ Aneesha's card START ________ -->
<div class="card">
<p class="name">Aneesha Rose</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">Rawz</a>
<i class="fab fa-github"></i>
<a href="https://github.com/roseaneesha" target="_blank"
>roseaneesha</a
>
</p>
<p class="about">
A CS undergrad, Web Developer, A front-end developer, Tech
enthusiast, A dancer, A future business woman
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="www.w3schools.com"
target="_blank"
title="First Resource"
>
w3schools
</a>
</li>
<li>
<a
href="www.frontendmentor.io"
target="_blank"
title="Second Resource"
>
Frontend Mentor
</a>
</li>
<li>
<a
href="https://developer.mozilla.org"
target="_blank"
title="Third resource"
>
MDN docs
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aneesha's card END ________ -->
<!-- ________ Elias' card START ________ -->
<div class="card">
<p class="name">Elias Inácio</p>
<p class="contact">
<a href="https://www.twitter.com/eliasinacio_1" target="_blank">
<i class="fab fa-twitter"></i>
eliasinacio_1
</a>
<a href="http://github.com/eliasinacio" target="_blank">
<i class="fab fa-github"></i>
eliasinacio
</a>
<a href="http://codepen.io/eliasinacio" target="_blank">
<i class="fab fa-codepen"></i>
eliasinacio
</a>
</p>
<p class="about">
I'm a Front-end developer from Brazil and I'm 19 years old. I love
music and programming. 🎶💻
<br />
Developing some things with Bootstrap 5, Sass/SCSS and currently
studying React.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.freecodecamp.org/"
target="_blank"
title="freeCodeCamp"
>
freeCodeCamp.org
</a>
</li>
<li>
<a
href="https://app.rocketseat.com.br/discover"
target="_blank"
title="Rocketseat"
>
Rocketseat
</a>
</li>
<li>
<a href="https://codepen.io/" target="_blank" title="CodePen">
CodePen
</a>
</li>
</ul>
</div>
</div>
<!-- ________Elias' card END ________ -->
<!-- ________ Timonwa's card START ________ -->
<div class="card">
<p class="name">Timonwa</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/Timonwa2" target="_blank"
>Timonwa2</a
>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Timonwa" target="_blank">Timonwa</a>
</p>
<p class="about">
My name is Pelumi but I sometimes go by Timonwa, I'm a self-taught
growing female frontend developer with skills in HTML, CSS,
Bootstrap and now Javascript. I one day hope to be a skilled and
respected Frontend and App Developer and also contribute/own my own
successful startup(s).
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.freecodecamp.org/news/javascript-projects-for-beginners/amp/?__twitter_impression=true"
target="_blank"
title="40 Javascript Projects for Beginners - Easy Ideas to Get Started Coding JS"
>
40 Javascript Projects for Beginners - Easy Ideas to Get
Started Coding JS
</a>
</li>
<li>
<a
href="https://hackernoon.com/10-soft-skills-every-developer-needs-66f0cdcfd3f7"
target="_blank"
title="10 Soft Skills Every Developer Needs"
>
10 Soft Skills Every Developer Needs
</a>
</li>
<li>
<a
href="https://learnui.design/blog/mobile-desktop-website-font-size-guidelines.html"
target="_blank"
title="The Responsive Website Font Size Guidelines"
>
The Responsive Website Font Size Guidelines
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Timonwa's card END ________ -->
<!-- ________ JonaWe's card START ________ -->
<div class="card">
<p class="name">Jona Wessendorf</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/JonaWe" target="_blank">JonaWe</a>
</p>
<p class="about">
20-year-old computer science student who loves to code in his free
time. Currently, learning frontend development.
</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.youtube.com/c/BenAwad97"
target="_blank"
title="Ben Awad"
>
Ben Awad
</a>
</li>
<li>
<a
href="https://www.youtube.com/channel/UCsBjURrPoezykLs9EqgamOA"
target="_blank"
title="Fireship"
>
Fireship
</a>
</li>
</ul>
</div>
</div>
<!-- ________ JonaWe's card END ________ -->
<!-- Antonio's Card Start-->
<div class="card">
<p class="name">Antonio Rodriguez</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/arodriguez240/" target="_blank"
>arodriguez240</a
>
<i class="fa fa-user"></i>
<a href="https://www.devrodriguez.me" target="_blank"