The link exercise 14 for Catphotoapp links but , not accepted

I’ve added code to link the cat photo to the URL. Both the words “cat photos”
as well as, the actual photo generate a drop down box that says “it works”
However, the proposed solution does not pass.
ANY assistance with this is graciuosly accepted.
Kindly-Apii

  **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>
    <a href="http://freecatphotoapp.com">
   <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."</a>
  </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:

missing something before </a> ? missing greater that symbol

Thankyou for your response.
I thought the same as you, missing the greater than symbol.
I tried that before and i have just tried it again but, it returns the same ansewers on the actual cat photo and the words “cat photo”. the respose is,“it works! this is a link to freecatphotoapp.com”.
However, I am still reciving the response “Sorry, your code does not pass. keep trying”.

Step 14:
You need to turn the image unto a link. and they give you the link ‘https://freecatphotoapp.com’.

if we want to turn an element like img to a link, we need to put the img inside the <a><img></a>. but what you did is you create an empty <a> and add it before the
and don’t forget to close the opening tag because you miss the >

Firstly, thank you for responding. hmmm…I maybe miss understanding what is being asked…So, As I look at my coding ,
I see the (p) section with an (a href) section in it and then I created another (a href) section outside of the (p) section that has the link to the URL and then the picture with the > sign left out.
So , now I’ve added the > at the end and and the result is the same…I’ve Also compared what I’ve written to another cat project that is further along than I am and I can"t find my error…?..?
They look the same.
I did that yesterday and stopped , thinking I need a rest ; )))
I will continue my efforts again today and see what happens.
I’ve included my updated code at the end of this post.
Share your thoughts on it.
Do you see the two links? they work but, they’re not accepted.
Hummm???
Thanks again for your response . Have a great day. :slightly_smiling_face:

Click here to view more cat photos.

  <a href="http://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>


Here’s the answer brother. Hope this helps.

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