Skip to content

CSS

CSS is a way to change the look of HTML web pages. Learn CSS at Codecademy.

CSS example

css
body {
  background-color: lightblue;
}

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

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