--- title: Prioritize One Style Over Another --- ## Prioritize One Style Over Another We need to create a CSS class called ```pink-text``` that gives an our ```h1``` element the color pink. ### Solution Between `````` create a class called ```pink-text```: ```css ``` And add in this class ```color``` with value of ```pink```: ```css .pink-text { color: pink; } ``` After, add this class to our ```h1``` element: ```css

Hello World!

``` ### Full solution ```css

Hello World!

```