Hello Developers, this onboarding documentation on Git & GitHub will guide you through the nitty-gritties of how we manage collaborating with each other here at our ChaiCode Cohort company. As a developer it is important for us to track the progress ...
As we know our old beloved HTML has anchor tags which causes page refreshing. Ever thought of using these in react?If we use these and page refreshes then what's the point of using react and studying all that virtual DOM concepts?So to solve this we ...
What is Markdown? Lightweight markup language with a plain text formatting syntax. can be converted into HTML/XHTML and others formats. it's main purpose is readability and ease of use. What is it used for? Readme Files(Github,etc) Forum & Blog posts...
⭐ Introduction Global information tracker (GIT) is a free and open source distributed version control system. It helps you to track changes made on files. Git allows developers to work on different parts of the same project efficiently. There are th...
CSS Selectors are used to select or target an HTML Element or group of elements based on the selector we are using. Selectors are backbone of CSS. Selectors are used in internal or external CSS. After selector name, a declaration block, i.e. curly br...
CSS selectors are used to "find" (or select) the HTML elements you want to style. We can divide CSS selectors into five categories: Simple selectors (select elements based on name, id, class) Combinator selectors (select elements based on a specific...
Markdown is just a markup language where you can write formatted elements & text in the document form. Let's learn the basic cheat sheet about it: Heading: for heading, you just put a # with a space and the heading text. # This is heading one # for...
What is GIT? Git is a tool used for source code management. It is a free and open-source version control system used to handle your projects. Git is used to tracking changes in the source code, enabling multiple developers to work together on non-lin...
So first of all what is the markdown? 🤨 Markdown is the markup language used to format the plain text Here is an example. But why we are using that? 🤷♂️ Markdown can be used for everything. People use it to create websites, documents, notes, ...
A Git Cheat Sheet Git is a distributed version control system. This means that a local clone of the project is a complete version control repository. These fully-functional local repositories make it easy to work offline or remotely. Developers commi...