Back to CSS

CSS Tutorial

Introduction to CSS

Learn what CSS does and how it styles HTML pages.

CSS stands for Cascading Style Sheets. It controls the visual presentation of webpages.

CSS works with HTML by selecting elements and applying styles such as color, spacing, typography, layout, and animation.

css
body {
  font-family: Arial, sans-serif;
  color: #111827;
  background: #ffffff;
}