What is inherit property in css ?
The inherit CSS keyword causes the element to take the computed value of the property from its parent element. It can be applied to any CSS property, including the CSS shorthand…
What is HTML Semantic Elements ?
Semantic elements = elements with a meaning. A semantic element clearly describes its meaning to both the browser and the developer.
What Are Boolean attributes in html
If a boolean attribute is present, it is always true. Boolean attributes include autofocus, inert, checked, disabled, required, reversed, allowfullscreen, default, loop, autoplay, controls, muted, readonly, multiple, and selected Boolean values can either be omitted, set to an empty string, or be the name of the…
How to Receive Query String Value in JavaScript ?
How to Receive Query String Value in JavaScript ?
What are Difference between var, let, const in javascript ?
Always declare JavaScript variables with var,let, or const. Var , let, const all three are use to create variable in javascript but there are following differences. Var Let Const Must…
What is Redux
1. What is Redux. 2. What is Core Concepts in Redux. 3. What are the Principles Of Redux. 4. What is Action in Redux. 5. What is Reducer in Redux.