SAShubham Aherinshubhamaher.hashnode.dev·Jan 19, 2023 · 3 min readHTML ElementStructure This is the basic template or barebone structure of HTML. Boilerplate <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <!-- Body --> </body> </html> Copy Headings There are s...00
SAShubham Aherinshubhamaher.hashnode.dev·Jan 15, 2023 · 2 min readCSS Box Model (Padding, Margin, Border)What Is The Box Model? One incredibly important thing to understand about CSS is that everything is a rectangular box. Everything from text, to buttons, to inputs are represented by a box in CSS. Even if you draw a circle with CSS it will still be re...00
SAShubham Aherinshubhamaher.hashnode.dev·Dec 23, 2022 · 2 min readNode Js V8What Is NodeJS? NodeJS is not a programming language. This is a server environment(By this nature of NodeJS, JavaScript is a server-side programming language and we can directly connect to the database). It is 90-95% similar to JavaScript but some...00
SAShubham Aherinshubhamaher.hashnode.dev·Dec 17, 2022 · 3 min readReact useEffect()The useEffect hook useEffect is a hook meant to be used when you want to perform side effects. Manually changing the DOM or fetching data are examples of this. By default, this hook runs after each render, which means that every time React sees the n...00
SAShubham Aherinshubhamaher.hashnode.dev·Dec 16, 2022 · 2 min readReact useState()What is useState hook? useState is a react hook which is used to add a state variable to our components. It means that we can now declare state variables to functional components. Syntax to declare useState hook const [state, setState] = useState('In...00