H2 element selector

Tell us what’s happening: why isn’t this working
Everytime I try to send it
it comes back
You should only use an h2 element selector to change the font.

Your code so far



<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lobster" >
<style>
.red-text {
  color: red;
}
h2  {
font-size: 40px;
font-family: lobster, monospace;
}
p {
  font-size: 16px;
  font-family: monospace;
}

</style>
</head>

<body>
<h2 class="red-text" "font-family"='lobster'>CatPhotoApp</h2>
<main>
<p class="red-text">Click here to view more <a href class="red-text""#">cat photos</a>.</p>

<a href="#"><img src="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>

<form action="https://freecatphotoapp.com/submit-cat-photo">
  <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
  <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
  <label><input type="checkbox" name="personality" checked> Loving</label>
  <label><input type="checkbox" name="personality"> Lazy</label>
  <label><input type="checkbox" name="personality"> Energetic</label><br>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36.

Challenge: Import a Google Font

Link to the challenge:

it’s not a really comprehensible error, but the name of the font is Lobster
also adding the generic name may cause it to fail

You only need to have Lobster here. Not lobster and monospace.

You don’t need to add a font-size for this challenge.

You don’t need to add head tags for this challenge. Just have the google font link.

If you do all of those changes then the test will pass.