Please I need help in Step 14. I've got a big problem fixing <a href="https://freecatphotoapp.com">

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</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/102.0.0.0 Safari/537.36

Challenge: Step 14

Link to the challenge:

Hi

Do you have a specific question?
Is there something in the instructions that you don’t understand?

It’s difficult to know how to help without a description of the problem you’re having.

About all I can do is to point you to this FCC article, which might be helpful:

Yeah, the issue I have is where to place the anchor opening tag, whether to place it before the <img text or after, 'cos either way I try, my code still doesn’t pass.

The instructions ask you to change the image into a link by

surrounding it with the necessary element tags

Another way to say that would be to say that you need to

nest the img element between the anchor tags

The very last example in the article that I linked to in my earlier post will show you exactly what that looks like.

You do need to be careful though.
It’s very easy to mistype something or even to accidentally lose some important characters from your code.
Make sure that the img element still has its closing angle bracket (>) and that your closing anchor element tag is correctly formed.

Have a go at it and, if your code doesn’t pass, post your code so that we can try to help.

(Remember to format your code using the </> “preformatted text” button.)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.