CSS Introduction

format_list_numberedLesson 1 of 5schedule1 min readview_agenda1 sectionauto_awesomeAI tutor ready
01

What is CSS?

CSS stands for Cascading Style Sheets. It describes how HTML elements are to be displayed on screen, paper, or in other media.

Example

body {
  background-color: lightblue;
}

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

p {
  font-family: verdana;
  font-size: 20px;
}