Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

please how is the best way to answer step 14 question on responsive web design ?

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>

<!-- User Editable Region -->

      <!-- TODO: Add link to cat photos -->
      
<p>Everyone loves<a href ="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg."> cute cats </a>online!
</p>
<p>Everyone loves cut cats 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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

While you have linked the text, there should be no leading or following spaces in link text. It’s a terrible design decision.

below is the code . please where’s the mistake ?

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

Welcome to the forum @obihillary

I edited your post so the code formats correctly on the forum.

  1. add a single space after the word loves
  2. remove the space before the word cute
  3. remove the space after the word cats
  4. add a single space after the anchor closing tag
  5. remove the dot before the second quote mark

Happy coding

1 Like


I tried what you suggested. But I still have the error. Can you help me?

Hi there and welcome. You need a space before online!.
Next time, if you have a question about the curriculum challenge’s, create your own topic to the challenge step using the Ask for Help button. That’s appear below the challenge editor, when you try to submit wrong code more than three times.

1 Like