CSS Tutorial - CSS Introduction
๐จ CSS Kya Hai?
๐ Real Life Analogy:
Ghar banane mein:
๐๏ธ HTML = Structure (walls, doors)
๐จ CSS = Interior design (paint, furniture, decoration)
โก JavaScript = Automation (lights, gadgets)
CSS = Website ki beauty/styling!
๐ Full Form
Cascading Style Sheets
- Cascading - Ek ke baad ek rules apply
- Style - Design, colors, layout
- Sheets - Style rules ka collection
๐ฏ CSS Se Kya Kar Sakte Hain?
| Feature | Example |
|---|---|
| Colors | Text, background colors |
| Fonts | Size, family, weight |
| Spacing | Margin, padding |
| Layout | Flexbox, Grid |
| Animation | Transitions, effects |
Bina CSS, website boring! Plain black & white text. CSS se colorful, modern banao!
Example
h1 { color: blue; }
p { font-size: 18px; }