By the end of this lesson, you will:
If HTML is the skeleton of a webpage, CSS is the skin, clothes, and colors. It transforms raw structure into a visual experience—deciding how your webpage looks and feels to users.
In this lesson, you’ll discover how CSS separates design from structure, making your websites easier to style, manage, and scale.
✅ Keeps design consistent across pages
✅ Makes pages responsive and visually appealing
✅ Simplifies design updates — change one style rule, update multiple pages
✅ Enables custom branding and animations
selector {
property: value;
}
h1 {
color: blue;
font-size: 32px;
}
h1)color)blue)Applied directly inside an HTML tag using the style attribute:
<p style="color: red;">This text is red.</p>
✅ Quick styling
❌ Not reusable or clean for big projects
Placed within a <style> tag inside the HTML <head>:
<head>
<style>
p {
color: green;
}
</style>
</head>
✅ Good for single-page styling
❌ Doesn’t scale well across multiple pages
Linked via a separate .css file:
<link rel="stylesheet" href="styles.css">
/* styles.css */
body {
background-color: #f4f4f4;
font-family: Arial, sans-serif;
}
✅ Best practice for large or multi-page sites
✅ Easy to maintain and reuse
| Property | Example Value | Description |
|---|---|---|
color |
blue, #333 |
Text color |
background |
#fff, url(...) |
Background color or image |
font-size |
16px, 2em |
Text size |
margin |
10px |
Space outside an element |
padding |
10px |
Space inside an element |
border |
1px solid black |
Adds a border |
display |
block, inline |
Controls layout behavior |
📚 CSS: The Definitive Guide – Eric Meyer
🛠 MDN Web Docs – CSS
🛠 Coolors – Color palette generator
🛠 Google Fonts – Stylish fonts for your site
🛠 CSS Gradient – Gradient generator
CSS gives your webpages life—it turns structure into style. Whether you’re building a clean business site or a colorful portfolio, understanding how CSS works is essential to controlling your design vision.
Create a simple HTML page with at least:
Then preview it in a browser. ✨
Not a member yet? Register now
Are you a member? Login now