The language for styling web pages

Why Use CSS?

CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes.

CSS Syntax

A CSS rule-set consists of a selector and a declaration block:

Selector { property: value}

Example :

body {
  background-color: lightblue;
}

h1 {
  color: white;
  text-align: center;
}