Posts

LEARN ABOUT THE GIT AND GIT HUB WITH A NEWBEE

#02 This is krish a 'newbee' still learning about Git and Github . In this blog I'll try my best to explain whatever i know about git and github in the way I learned . What is git and github ? Git :  Git is a tool that helps us to track down the changes we made in  our codes by saving each changes in different versions . (For our understanding lets say the unchanged code as version 1 and the 1st changed or edited code as version 2 .)      It will be saved locally i.e.,within the computer  Git doesn’t save your work automatically — you have to tell it when to save a version. Here’s how it works: You make changes to your files (like editing code or adding new files).    2.You tell Git to save those changes by giving the command in the git bash . The command: git commit -m "your message here" Git will then save a version of your project. You get to decide when to save (or commit ) your work! Github :  Github is a web source where we sto...

LEARN HTML WITH A NEWBEE

#01 This is krish a 'newbee' learning html. In this blog I'll try my best to share everything that I learn each day . what are the apps/web pages needed for learning html? visual studio code  (we will code in this app) w3schools.com( learn the basics here it is easy and simple) where should I start ? step 1 - open file explorer and created a folder in an empty (nearly empty ) local disk             (preferably name it (folder) as learning) step 2 - open that folder in visual studio code , the folder will appear at the left side of the screen if they don't press ctrl+ B step 3 - mouse over the folder you will see four icon, click on the very first icon to create new file   step 4 -  create files for each lesson given in the w3schools , in the form of ' filename.html '             e.g: introduction.html,basic.html,elements.html........etc Note: 1.Once you typed the filename.html and click enter they will save . ...