RBRaviraj Bujawadeinravirajbujawade.hashnode.dev·Feb 16, 2023 · 2 min readHTML ElementHTML (Hypertext Markup Language) is the standard markup language for creating web pages. It provides a set of predefined elements, each with its specific purpose, to structure and present content on a web page. In this article, we'll take a closer lo...00
RBRaviraj Bujawadeinravirajbujawade.hashnode.dev·Feb 16, 2023 · 3 min readFlex Box (CSS)Flex Box It is a one-dimensional layout method for arranging items in rows or columns. Items flex (expand) to fill additional space or shrink to fit into smaller spaces. This article explains all the fundamentals. 1. The Flex Container The flex conta...00
RBRaviraj Bujawadeinravirajbujawade.hashnode.dev·Jan 23, 2023 · 2 min readMastering 🧑🏫the CSS Box ModelThe CSS box model is the concept that describes how the size and dimensions of elements in a web page are calculated. It defines the way that the width, height, padding, borders, and margins of an element are calculated, and how they interact with ea...00
RBRaviraj Bujawadeinravirajbujawade.hashnode.dev·Sep 12, 2022 · 4 min readJAVASCRIPT-Cheat sheet (interviews) 👨💻Top JavaScript Interview Topics Hi everyone! In this article, we are going to learn about very important topics in JavaScript, which are must-knows if you want to crack development interviews. The topics we are going to discuss here are: Scope Sing...00
RBRaviraj Bujawadeinravirajbujawade.hashnode.dev·Aug 29, 2022 · 3 min readArray in JavaScriptWhat is an Array?🤔 In JavaScript, array is an object that represent a collection of similar type of elements. //Syntax const array_name = [item1, item2, ...]; //Example const cars = ["Audi", "Volvo", "BMW"]; In JavaSc...00