Import a Google Font Alice

Tell us what’s happening:

I’m adding a link to the Lobster family before the style and creating a CSS selector to make all h2 elements to use Lobster as the font. Do I have to make a p selector with the monospace in it and remove monospace font from red-text?

Your code so far


<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
  .red-text {
    color: red;
    font-size: 16px;
    font-family: monospace;
  }
</style>
h2 {
font-family:  Lobster;
}
<h2 class="red-text">CatPhotoApp</h2>
<main>
  <p class="red-text">Click here to view more <a href="#">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="/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>

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-css/import-a-google-font

You should remove the font-family: Monospace form the red-text and to create a new p element and write that there.Then you should create a h2 element and you should write font-family:Lobster.

All element you should write into the style because you have got Css.ok?

Also you have got to delete the h2 element below the style.

Thanks, so much. I thought of it when I was writing for help. That would fix it. Removing monospace from .redtext would fix it.

You should make a new h2 element and to write inside font-family: Lobster;
Than you should make a new p element and to write inside font-family: Monospace;

p {
font-family: Monospace;
}

h2 {
font-family: Lobster;
}

You should write this inside on style element.