Classes are reusable styles that can be added to HTML elements.
Here's an example CSS class declaration:
<style>.blue-text{color: blue;}</style>
You can see that we've created a CSS class calledblue-textwithin the<style>tag. You can apply a class to an HTML element like this:<h2 class="blue-text">CatPhotoApp</h2>. Note that in your CSSstyleelement, class names start with a period. In your HTML elements' class attribute, the class name does not include the period.
TEST
Inside yourstyleelement, change theh2selector to.red-textand update the color's value frombluetored.
Give yourh2element theclassattribute with a value ofred-text.
<style>.red-text {
color: red;
}
</style><h2class="red-text">CatPhotoApp</h2><main><p>Click here to view more <ahref="#">cat photos</a>.</p><ahref="#"><imgsrc="https://bit.ly/fcc-relaxing-cat"alt="A cute orange cat lying on its back."></a><div><p>Things cats love:</p><ul><li>cat nip</li><li>laser pointers</li><li>lasagna</li></ul><p>Top 3 things cats hate:</p><ol><li>flea treatment</li><li>thunder</li><li>other cats</li></ol></div><formaction="https://freecatphotoapp.com/submit-cat-photo"><label><inputtype="radio"name="indoor-outdoor"checked> Indoor</label><label><inputtype="radio"name="indoor-outdoor"> Outdoor</label><br><label><inputtype="checkbox"name="personality"checked> Loving</label><label><inputtype="checkbox"name="personality"> Lazy</label><label><inputtype="checkbox"name="personality"> Energetic</label><br><inputtype="text"placeholder="cat photo URL"required><buttontype="submit">Submit</button></form></main>