## CSS Demo ### CSS Properties Now that we've gone over adding HTML tags to the page, lets cover adding styles to those tags. We can do quite a lot with styles! We can change: - Typography - Colors - Appearance (Corners, Borders, Decorations) - Layout - Position - Inline vs Block - Animations - and [many more](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference) CSS is always applied in `property: value` pairs, like `background: blue;` and are terminated with a semi colon. ### Applying CSS to an HTML file CSS can be applied to HTML tags in three different ways. 1. Inline - Styles are applied directly to the HTML tag - `