Step 14 catphoto app

Turn the existing text cute cats into an anchor element that links to:

https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg
can anyone point out my mistake pls am stak here

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

Hi there. You have the words cute cats twice. You need to turn the existing words into a link using anchor element. Also post your full code and link to the challenge step. Remember, use three back ticks (```) on separate line before and after your code here in your reply.

Hey Buddy, Can You Do post your code please ?

So that we will be able to help you more.

Hope You Understand.

Welcome to the forum @habenm31

It looks like you inserted new text into the paragraph element then turned those words into a link.

The first letter of the paragraph is missing, and now there is a double up of the words cute cats.

Please reset the step to restore the original code and try again.

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

Happy coding

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
<p><a herf="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg"cute cats</a>Everyone loves cute cats online!</p>
      <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>

Hi,
Here’s how to post your code in the forum:
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 (').

You don’t need to add “cute cats” again. They already exist inside the text : Everyone loves cute cats online!. Try adding your anchor tags around those words inside the text.
Reset the step and try again.
Good luck!

I’ve edited your code 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 (').

i tried that it didnt work

hi @UncleJames , please create your own topic to ask for help

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.