Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

I’m being asked to tun the existing text “cute cats” into an anchor element that links to https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg. I have done this with no additional instances of “cute cats” and I have cute cats as the anchor element but now it’s telling me that the text of the P element should still be “everyone loves cute cats online”. I do not understand what I need to do here because the text all looks right on the page.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

    <p>Everyone loves <a href=https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg>cute cats<a/> online.</p>
  


<!-- User Editable Region -->

      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:135.0) Gecko/20100101 Firefox/135.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

aren’t you missing something here? like the quotes

But that is not your issue

notice how the test that fails says

The text of the p element should still be Everyone loves cute cats online! .

please place your attention to the last character of the highlighted text. Do you have an exclamation point?

You have changed the ! into .

1 Like

OMG facepalm I didn’t even see that