anuragsharma160.hashnode.devMy HTML and CSS journey and live project linksHTML journey My html journey started with installing vs code as it is my first language. Then I learned about how to write boilerplate code and giving name to the document. The most important thing I learned in html is the inline tags and block level...Jun 21, 2024·2 min read
anuragsharma160.hashnode.devCheat sheet on git basicsNote - Repository / directory means folder. 1. git status - This command is used to check the present working state of the git. It shows whether git is tracking any folder or not. It also shows whether any changes need to be added and/or committed or...Mar 29, 2024·4 min read
anuragsharma160.hashnode.devCheat Sheet on Markdown1. Heading - Markdown Syntax: # Heading 1 ## Heading 2 ### Heading 3 Output: Heading 1 Heading 2 Heading 3 2. Bold - Markdown Syntax: **Bold** or __Bold__ Output: Bold 3. Italic - Markdown Syntax: *Italic* or _Italic_ Output: Italic 4. Striketh...Mar 24, 2024·2 min read
anuragsharma160.hashnode.devComplete in depth guide on CSS selector1. Universal selector This selector is denoted by asterisk symbol i.e. *. This selector selects all the elements on the webpage which means whatever css is written under universal selector is applied to all the elements on the webpage. For example:HT...Nov 29, 2023·19 min read
anuragsharma160.hashnode.devCSS position property in depth high quality explanationThere are five types of positions in CSS namely static, relative, absolute, fixed and sticky. Before understanding position let us first understand what is z-index because z-index is applicable to position. z-index z-index is the order (stack orde...Oct 8, 2023·19 min read