My First CSS Example

This is a paragraph.

This is the CSS code embedded in the head of this page

<style>
body {
  background-color: lightblue;
}

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

p {
  font-family: verdana;
  font-size: 20px;
}
</style>