Freecodecamp: Even after meeting the required criteria, I am not be able to pass the test.

Created on 23 Jun 2016  路  1Comment  路  Source: freeCodeCamp/freeCodeCamp

Challenge Import a Google(Font) has an issue.
User Agent is: Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0.

Screenshot:
Image of Yaktocat

My code:

<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css" />
<style>
  .red-text {
    color: red;
   font-family: Lobster;
  }

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

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

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

Most helpful comment

After deleting the class red-text from p element, I passed the test!

>All comments

After deleting the class red-text from p element, I passed the test!

Was this page helpful?
0 / 5 - 0 ratings