--- title: Override Class Declarations with Inline Styles --- # Override Class Declarations with Inline Styles --- ## Problem Explanation We need to use an ```inline style``` to try to make our ```h1``` element white. **Example:** Inline styles look like this: ```css

``` **NOTE:** An inline style loses many of the advantages of a style sheet (by mixing content with presentation). Use this method sparingly. --- ## Solutions
Solution 1 (Click to Show/Hide) In this line: ```css

Hello World!

``` In opening tag ```

``` we need to add ```inline style``` to make our ```h1``` element white: ```css

Hello World!

```