- CSS stands for Cascading style sheets
- CSS defines the look of the website
- It tells the fonts, sizes, colors and locations of elements
- Can be used to animate elements
body {
background-color: lightblue;
}
h1 {
color: white;
text-align: center;
}
p {
font-family: verdana;
}