Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
i have completed the rest of the htnl course and i still dont understand what this is asking me to do. could someone elaborate? the text is my link and i only have one anchor element. i dont know what i am missing

  **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 href="https://freecatphotoapp.com"</a> cat photo</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/103.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 12

Link to the challenge:

you have a typo. Not “cat photo” it must be “cat photos”

i facepalmed for a second there but now it is saying that i only need 1 anchor element?

literally stuck on the same exact issue, we have the same code. The link for “cat photos” is blue and there is only one opening and closing anchor. Not sure why its not working. even when I remove the closing anchor its still saying there should only be one anchor.

i hope its not a bugged lesson. hopefully we will get a solution soon, this is the last one i need then im off to css

As said, text should be cat photos, not cat photo.

This text should be inside the anchor element, like this:

<a href="URL">some text</a>

Also, there was a dot at the end of the sentence. In the code above it is missing.

In general, you were not supposed to change original text. Any missing character, any extra space - it’s a mistake.

hm the Lesson is alright i tried it right now again. You need a Space between more (a) no spaces between >cat photos< Thats the way it worked same codeline like you have

just solved it. it should be <a href="https://freecatphotoapp.com">cat photos</a>

that makes sence since the anchor was within the paragraph. i though the anchor was separate from the paragragh. thank you!

If you want to help somebody it’s cool. But on this forum it’s considered the best practice not to give direct answers. You can provide hints, generic examples, useful links, but not direct answers.

yes i got it to. the way the code worked even with the other way was a little misleading. but thank goodness we got it! i was going crazy

yea that’s a good point. thanks for checking me, I appreciate it.

yea it was super frustrating, I was stuck on it for like 25 minutes.

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