Services Work Learn About Contact
0/8
Lesson 1 of 8

What is CSS?

CSS stands for Cascading Style Sheets. It controls how HTML elements look — colors, fonts, spacing, layout, and animations.

Think of HTML as the skeleton and CSS as the skin and clothes. Without CSS, every website would look like plain text.

You can write CSS in three ways: inline (inside tags), internal (inside <style>), or external (a .css file linked in <head>).

CSS
/* External CSS file: styles.css */
body {
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

h1 {
  color: #333;
  font-size: 28px;
}
🧠

Quick Quiz

Answer correctly to unlock the next lesson.

Support the mission

This learning platform is 100% free: no ads, no tracking, no paywalls. If it helped you learn something useful, you can support future lessons or donate to Doctors Without Borders, which provides emergency medical care in crisis zones worldwide.

🎉

You completed CSS!

You finished all 8 lessons and quizzes. You now know the basics of CSS.