javascript-array-basics.hashnode.devJavascript ArraysIntroduction You would know about primitive datatypes (string , number , boolean ...) . Array is a non-primitive datatype . It is slight different from the array of other languages and it has some mor1d ago·3 min read
css-selectors-01.hashnode.devCSS SelectorsWhy CSS selectors are needed CSS Selectors are needed to tell the browser which HTML you want to style . Without them , you would will have no idea where to apply these styles . Selectors choose the right HTML element Gives precision control Clean...Jan 30·2 min read
emmet-for-html-01.hashnode.devEmmet for HTML:What Emmet is (in very simple terms) Emmet lets us type short abbreviations then expands them into full HTML code . You Type: ul>li*3 It turns into : <ul> <li></li> <li></li> <li></li> </ul> Why Emmet is useful for HTML beginners Emmet reall...Jan 30·2 min read
understand-html-tags-elements-01.hashnode.devUnderstanding HTML Tags and ElementsWhat HTML is and why we use it HTML (Hyper Text Markup Language) is the standard language used to create the structure of a webpage . It tells the browser that how the elements are organized and how will they display are getting rendered in the websi...Jan 30·2 min read
how-a-browser-works-01.hashnode.devHow a Browser WorksIntroduction When you write a web address like example.com in the browser , the webpage loads within seconds . A browser is a bridge between user and the internet . What a browser actually is ? A browser is a complex software system that acts as int...Jan 30·5 min read