<style>
.red-text {color: red;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
If this is the âChange the Color of Textâ challenge, your code seems to be correct. I would suggest possibly doing it differently than in between style tags. That may be why itâs not passing you.
Your code is using a class to style the color. The challenge wants you to use the style="" syntax, which is also known as inline-styling. You just need to move everything current between the { } in the h2 selector definition to be inside the ââ of the style="".
The example did the same thing for the h2 element, but made the font color blue instead of red.