Web development is the work involded in developing a web site for the Internet (World Wide Web) or an intranet (a private network). Web development can range from developing a simple single static page of plain text to complex web-based internet applications (web apps), electronic businesses, and social network services.
-
Front-end developer is a person who is responsible for the visual part of the website. He is responsible for the design and the user experience of the website.
-
Back-end developer is a person who is responsible for the server-side of the website. He is responsible for the functionality of the website.
- Visual Studio Code [https://code.visualstudio.com/]
- Live Server VSCode Extension: [https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer]
- Live Share VScode Extension: [https://code.visualstudio.com/learn/collaboration/live-share]
- Node.js: [https://nodejs.org/en/download/]
- Download git tool: https://git-scm.com/downloads
- git config --global user.name "githubUsername"
- git config --global user.email "[email protected]"
- git clone https://github.com/username/Repositoryname {example}
- git init
- git add .
- git commit -m "commitMessage"
- git branch -M main
- git add remote origin https://github.com/username/YourRepository.git
- git push -u origin main
- git add . (or single file which is updated)
- git commit -m "commit Message"
- git push -u origin main
Video Tutorials for Installation and Software configurations: