Feb 1 · 3 min read · Let me start with a feeling every HTML beginner has had. You sit down to write HTML and type this: <div> <h1></h1> <p></p> </div> Then again.And again.And again. By the 10th closing tag, your brain isn’t learning HTML anymore — it’s just tired. ...
Join discussionFeb 1 · 6 min read · By, Parth Kumbhar The "Why": Connecting Style to Structure Let's say you are a teacher in a class full of students. 👩🏫 You want to give an instruction, but you cannot just yell "Sit down!" if you only want one particular student to sit down. You ...
Join discussion
Feb 1 · 4 min read · Let me start with a very honest beginner question: If CSS styles things… how does it know what to style? Because when you write CSS, you’re not painting the whole page.You’re saying things like: “Style this paragraph” “Change those buttons” “Onl...
Join discussionJan 31 · 3 min read · If HTML is the structure of a website, then CSS is the skin, the makeup, and the overall visual appeal of a website. CSS adds colours, borders, spacing, margins, paddings, and animation to the elements of HTML. Now to add css to each and every elemen...
Join discussion
Jan 31 · 5 min read · If HTML is the skeleton of a webpage, then CSS (Cascading Style Sheets) is the wardrobe, the makeup, and the interior design. But before you can change the color of a heading or the size of a button, you need to tell the browser exactly which element...
Join discussion
Jan 30 · 2 min read · Web Dev Cohort 2026 · HTML & CSS CSS is used to style webpages, but CSS cannot apply styles unless it knows which elements to target.This is where CSS selectors are used. Selectors tell the browser what to style. Why CSS Selectors Are Needed A webpa...
Join discussionJan 30 · 3 min read · When you write CSS, you are not just styling randomly. You are telling the browser: “Apply this style to these specific elements.” But how does CSS know which elements to style? That’s where selectors come in. In this article, you’ll learn: Why CSS ...
Join discussionJan 30 · 3 min read · CSS Selectors: When people start learning CSS, they often focus on colors, fonts, and layouts. But before any of that matters, there’s a more basic question that CSS must answer first: Which element should this style apply to? That’s exactly why CSS ...
Join discussion