Skip to content

Latest commit

 

History

History
79 lines (54 loc) · 2.28 KB

readme.md

File metadata and controls

79 lines (54 loc) · 2.28 KB

How to become a web developer in 2021

Below there is an image that has a few tools/technologies/frameworks to learn to be a web dev in 2021 hello

Resources

In the folders there will be resources to learn a tool/technology. Feel free to create issues and contribute to these resource folders and also to the roadmap.

Videos
  1. Web Boost
  2. Roadmap 2021
  3. Roadmap 2020
  4. Roadmap 2018
Blogs
  1. Yearly Roadmap

Contribution Guide

  • Fork this repository
  • Clone Locally on your machine
  • Create a branch from git bash or powershell (you can also use github web app/cli)
git branch new_branch
  • Switch to the branch
git checkout new_branch
  • Add Links to the resources folder on the readme file. (if doesn't exist, create one)
  • Create improvised web.png and replace it with the existing one
  • Make Changes and Add those Changes
git add .         // to add all files in the directory
git add file_name // to add a particular file
  • Commit those changes
git commit -m "Commit Message"
  • Push to your forked repo
git push origin new_branch
  • Submit your Changes for review. if you go to github you will see a Compare & pull request button. Click on that.