Google Fonts, and other web font sources can be used to use custom web fonts.
To import a Google Font, copy the font’s URL from the Google Fonts library and then paste it into <link href="GOOGLEFONTSURL" rel="stylesheet" type="text/css">
Final Code
<linkhref="https://fonts.googleapis.com/css?family=Lobster"rel="stylesheet"type="text/css"><style>.red-text{color:red;}p{font-size:16px;font-family:monospace;}h2{font-family:Lobster}</style><h2class="red-text">CatPhotoApp</h2><main><pclass="red-text">Click here to view more <ahref="#">cat photos</a>.</p><ahref="#"><imgsrc="https://bit.ly/fcc-relaxing-cat"alt="A cute orange..."></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>