Apologies: Cat Photos (again)

I’ve reviewed what has already been said about step 12 but I’m so very stuck anyway. Breezed up thru 11 and then 12 instructions obviously didn’t connect for me. I’ve tried everything I can think of and then some. PLEASE someone show me how to pass thru this step. I can’t move on. It’s been two days and I have to leave now again to go to work. Soooooo frustrating. Thank you.

Please provide your code and a link to the challenge. Thanks

Cat photo app, step 12

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <main>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more cat photos.</p>
      <a href="https://freecatphotoapp.com">cat photos</a>
      <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>

hang on, i’ll send again

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

Thanks. Will do from now on. I was just attempting to find my way into that after seeing the actual cat pix page.

And so, I have to head off to work but I’ll watch for the answer to my current speedbump. Thanks for you patience and help, Jeffrey

Turn the words cat photos located inside p element into a link

You need to move the anchor element to the phrase ‘cat photos’ on this line:

I get the concept. I’m still missing the exact semantics. I’ve tried to insert anchor tag into p in various ways as below but I’m obviously still missing something.

      <p>Click here to view more ><a href="cat photos"<a/> </p>

This is not the anchor element from the next line. You literally need to copy the anchor element you wrote and totally replace the words ‘cat photos’ with that entire anchor element.

Click here to view more cat photos

Isn’t this correct? It still doesn’t “pass”. It works in the “console”:
<p>Click here to view more <a href="https//freecatphotoapp.com">cat photos</a></p>

It is missing the period at the end of the paragraph.

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