Having Doubt degrading

Tell us what’s happening:

Your code so far


<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
  .red-text {
    color: red;
  }
h2
{
    font-family: Lobster, monospace ;          `It Doesn't Work here`
    <!--Google Font Called--> 
}
  p {
    font-size: 16px;
    font-family: monospace;
  }
</style>

<h2 class="red-text">CatPhotoApp</h2>

**Your browser information:**

User Agent is: `Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.158 Safari/537.36 Vivaldi/2.5.1525.43`.

**Link to the challenge:**
https://learn.freecodecamp.org/responsive-web-design/basic-css/specify-how-fonts-should-degrade

Hi Arterim7299,

You did not yet comment out the link tag on the top of the page that imports the font from Google. So the Lobster font is still visible.

By the way, your comment with <!-- an --> is a comment style to be used within HTML, not CSS. If you wanted to add a comment in CSS (anything within the <style> and </style> tags), use the /* and */.

Please let us know if you get it working now. Enjoy!
sandrab