## CSS Demo ### CSS Properties Now that we've gone over adding HTML tags to the page, let's 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 styles are always written in `property: value` pairs (like `background: blue;`) and terminated with a semicolon. ### Applying CSS to an HTML file CSS can be applied to HTML tags in three different ways. 1. Inline using an HTML tag's `style` attribute - `
Hello
` 2. Via a `