- CSS: Cascading style sheet
- RGB: Red, Green, Blue
- HSL: Hue, saturation, light
- Hex Codes: #000 or #00FF00
p {color: black; background-color:green;
}
- "Color" is the property
- "Green" is the value
- "Declaration" is the property value; the pair, green and color.
- "{}" Curly brackets, braces
- Element
- Universal
- Class
- ID
- Can have a parent, child, sibling code
- header > nav > ul > li