Content: Text, Media
HTML: Structure + Semantics
CSS: Presentation + Design
JS: Interactivity
= Your Website
CSS = Cascading Style Sheets
CSS is a "style sheet language" that lets you style the elements on your page.
CSS is works in conjunction with HTML, but is not HTML itself.
**All colored text, position, and size**
More examples: https://www.csszengarden.com/
CSS consists of style rules. Each style rule consists of a selector and declarations of property-value pairs:
selector {
property: value;
property: value;
}