dushyantxcode.hashnode.devCSS Selectors 101: Targeting Elements with PrecisionSelector in most basic term a selecctor tell the browser which element to apply CSS rule Example: h1 { color: red; } we have h1 → selector color: red; → style rule Why Selector Are Needed CSS selector are needed because CSS has to know exactl...Jan 30·3 min read
dushyantxcode.hashnode.devHow a Browser Works: A Beginner-Friendly Guide to Browser Internalsdo u think every think is magic suppose u got url for some website now u type that on browser and see u open that website withoutcare what is happening behind this . this process is complex let me gave u a tour , yo will read this gere aftwwe this yo...Jan 30·5 min read
dushyantxcode.hashnode.devEmmet for HTML: A Beginner’s Guide to Writing Faster MarkupEmmet it is basiclly a tool for writting a html and css superfast . Instead of tying manually everything , you can tpe a short abbreviation , and emmet expands it into full code , for example typing ul>li*3 instantly creates a unorder list with three...Jan 30·4 min read
dushyantxcode.hashnode.devUnderstanding HTML Tags and ElementsHTML stand for hyper text markup language it is a markup not a programming it mean html does not think, calculate , make decision if website were a human than HTML = skeleton (structure) CSS = skin (design) JavaScript = muscle(behavior) it is us...Jan 27·3 min read
dushyantxcode.hashnode.devWhat is cURLcURl stand for Command Line URL tool. cURL let you talk to server directly from the terminal instead of using browser . for eg rowser → talks to server with ui cURL → talks to server using text command what cURL actually does request web page send ...Jan 27·3 min read