OMOmang Morekarinomangmorekar.hashnode.dev·Jul 24, 2022 · 2 min readGit Cheat SheetInitialize a git repo git init Add files to the staging area git add fileName OR git add . The git add . command is used to add all the files to the staging area. Commit staged changes git commit -m "message for the commit" View commit his...00
OMOmang Morekarinomangmorekar.hashnode.dev·Jul 23, 2022 · 2 min readMarkdown Cheat-sheetMARKDOWN helps to structure a document for easy readability. It has syntax which somewhat resembles HTML. HEADINGS Headings are written using the # symbol. Headings range from 1-6. The size of the heading decreases as the number of #s increase # Hea...00
OMOmang Morekarinomangmorekar.hashnode.dev·Jul 22, 2022 · 2 min readPositions in CSSPosition helps you to position a element in the according to the position property. The top, right, bottom and left properties helps us to shift a element to a desired position. Values for the position property static relative absolute fixed sticky...00
OMOmang Morekarinomangmorekar.hashnode.dev·Jul 21, 2022 · 5 min readSelectors in Depth!What are selectors? Ans) Selectors can be called as patterns used to select HTML elements. A HTML element can be selected in multiple ways. Various types of selectors are combined together to select a HTML element In simple words selectors are used t...00
OMOmang Morekarinomangmorekar.hashnode.dev·Jan 6, 2021 · 3 min readCombinators in CSSCombinators are a type of selectors which helps in combining various selectors. As a side note if you use combinators, you also create a higher specificity. The rule with more information to it wins over rules with less information. Adjacent Si...00