CSS Syntax

CSS is a rule-based language that defines styles for HTML elements

filter_list
Selector
Targets HTML elements to style
settings
Declaration Block
Contains one or more declarations in curly braces
tune
Property & Value
Property: what to change, Value: how to change it
h1 {
  color: red;
  font-size: 2.5em;
}

p {
  color: blue;
  padding: 10px;
}