lifewithcoding.hashnode.devCSS Selectors 101: Targeting Elements with PrecisionThe Art of Selection: A Deep Dive into CSS Selectors In the world of web development, HTML is the skeleton—the raw structure that defines what content exists on webpage. But without CSS, that skeleton is a just combination of black text and blue link...Jan 30·4 min read
lifewithcoding.hashnode.devGetting Started with cURLAny computer/machine that serves is called server. Well , suppose others computers have to talk to server like for exchanging some data. For this, computer has to send some request to server. In the old time , we are using tools for this . One famous...Jan 30·4 min read
lifewithcoding.hashnode.devEmmet for HTML: A Beginner’s Guide to Writing Faster MarkupWriting HTML can make you slow in this fast-paced world. To create a simple heading, you have to type <h1>, then the content, then </h1>. Doing this each times with different content is tedious and prone to error. Emmet is the "cheat code" that solve...Jan 30·2 min read
lifewithcoding.hashnode.devUnderstanding HTML Tags and ElementsHTML stands for Hyper Text Markup Language. HTML is the skeleton of webpage . It defines the meaning and content of webpage. Hyper Text refers to the links that connects web pages with one another either within single website or between websites. HTM...Jan 30·3 min read
lifewithcoding.hashnode.devHow a Browser Works: A Beginner-Friendly Guide to Browser InternalsWhen we type any URL on browser ,it sends DNS query to find IP address of server then send HTTP request to server and receives code files and assets from server . Do you know how browser align these assets like image, text, video, etc. to form a webp...Jan 30·5 min read