Importing a Google Font Aside From The Challenge

Tell us what’s happening:
So this isn’t necessarily a question about importing this specific font into this code. but more of how you would find other fonts to put in other codes besides this one. Anyone have an idea on where to find the links for fonts in order to be able to call them???

Your code so far


<link href="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>

<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 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15.

Link to the challenge:
https://www.freecodecamp.org/challenges/import-a-google-font

There are a lot places you can get fonts but here is a good place to start:

If you find a font you like then, by clicking on the right links, you will find the code you need to use. I won’t go into any more detail as you will probably find the info you need more easily than if I were to write any instructions.

2 Likes