PKPrasad Kawalekarinprasadk.hashnode.dev·Jul 23, 2022 · 4 min readGit Basics !What is Git ? Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Windows Installation Visit Git Download then download and install git on your...00
PKPrasad Kawalekarinprasadk.hashnode.dev·Jul 23, 2022 · 3 min readMarkdown Cheat sheet !What is Markdown ? Markdown is a way of writing content on the web. It makes it easy for the reader to read the content compared to if you write the same thing in plain text. In fact, even this blog is written using the markdown syntax. Let's see s...00
PKPrasad Kawalekarinprasadk.hashnode.dev·Jul 17, 2022 · 2 min readPseudo elements ::short explanationWhat is a pseudo-element ? A pseudo-element is keyword that we add to the selector which helps tp style the element(s). For example : If you want to change the first letter or first line - use ::first-letter or ::first-line If you want to add som...00
PKPrasad Kawalekarinprasadk.hashnode.dev·Jul 17, 2022 · 1 min readPseudo-classes :short-explanationWhat is a Pseudo-class ? A pseudo-class is a keyword that we add to the selector that specifies state of the selected element(s). For example : When the user hovers over the element - :hover can be used When the input field is under focus - :focu...00
PKPrasad Kawalekarinprasadk.hashnode.dev·Jul 17, 2022 · 8 min readLet's learn CSS selectors !There are a lot of different ways in which we can use the selectors. But before moving onto to the different ways, let's first understand what are CSS selectors. What are CSS selectors ? CSS selectors basically let's you select the HTML element(s) t...00