CSS is a rule-based language that defines styles for HTML elements
Selector
Targets HTML elements to style
Declaration Block
Contains one or more declarations in curly braces
Property & Value
Property: what to change, Value: how to change it
h1 {
color: red;
font-size: 2.5em;
}
p {
color: blue;
padding: 10px;
}
color: red;
font-size: 2.5em;
}
p {
color: blue;
padding: 10px;
}