Build a Cat Photo App - Step 14

Tell us what’s happening:

I am not able to understand what I have to do in this part

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

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

<!-- User Editable Region -->

      <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>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0

Challenge Information:

Build a Cat Photo App - Step 14

im stuck on the same question and im almost certain i did a correct anchor

text<a href="link"text

Hi there, welcome to the community! :blush:

It looks like there’s an issue with your code.

The lesson asks you to turn “cute cats” into an anchor (<a>) element that links to a given URL. But you’ve used an incorrect and unknown tag instead.

Make sure to reset your lesson and wrap “cute cats” with <a> and </a> as instructed. Keep going, you’re almost there!

1 Like

Hi there,
It’s best to open a new forum thread for your issue and explain it clearly there first. That way, more people can see it and help you out faster. :blush:

Hey buddy see this is the given p tag in which there is word name `cute cats

<p>Everyone loves cute cats online!</p>

Here you need to convert the given word into an anchor tag and use the given link .

https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg

See how you’ve already an anchor tag.

Here kindly do replace the word cute and place a in place of it.

Hope You Understand.