CSS Basics

CSS (Cascading Style Sheets) is used to style HTML pages.

This text is styled using CSS.

Example

p {
  color: blue;
  font-size: 20px;
}