Specify How Fonts Should Degrade- what am I suppose to dooo

Tell us what’s happening:

I have no idea what I’m suppose to do here. lolol

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:
  }
  h2 {
    font-family: Lobster, Monospace;
  }

  p {
    font-size: 16px;
    font-family: Monospace;
  }
</style>

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

<p class="red-text">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>
<p class="red-text">Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/specify-how-fonts-should-degrade

Read the User Story. It says:

Comment out your call to Google for the Lobster font by putting

<!-- 

in front of it.

Be sure to close your comment by adding -->.

I’ve tried putting it directly around the word “Lobster” and the code as a whole. Not sure what else would work

Put it before the link tag, and after the link tag.

Basically, you’re commenting out (removing) the css link to Google.

the exclamation mark before link tag changes colour of link to black and --> at end, however it still does not work. please advise otherwise

<!link href=“https://fonts.googleapis.com/css?family=Lobster” rel=“stylesheet” type=“text/css”>

Solution: