Build a Cat Photo App - Step 14

Tell us what’s happening:

I wrote my

element, but it donsent work ! what should i do

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 online!</p>
      <p>
      <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a></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/132.0.0.0 Safari/537.36 Edg/132.0.0.0

Challenge Information:

Build a Cat Photo App - Step 14

Hi there! You need to add anchor element around the existing words cute cats. Reset the challenge step and try again.

Hello esromhanok22,

You are on the right track with your code. What you currently did is add an anchor element with the link that was provided underneath the text that was already there.
But the question asked you to add this anchor element to the already existing text “cute cats”.

Notice how in the code that is already there it has “cute cats” already.
<p>Everyone loves cute cats online!</p>

So can you change it so the anchor element is used on the existing “cute cats” phrase instead?