Build a Cat Photo App - Step 14

Tell us what’s happening:

What is wrong with my code? Can you describe what i am doing wrong?

Your code so far

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

<!-- User Editable Region -->

       <p>Every one loves <a href="https://freecatphotoapp.com">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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36

Challenge Information:

Build a Cat Photo App - Step 14
https://www.freecodecamp.org/learn/full-stack-developer/workshop-cat-photo-app/step-14

Hi there. When you hit the button that checks the code, do you know what text pops up next to the light bulb icon?

you have changed the content of the p element, you can see if the hints help you to restore it, or reset the step

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

Hi, you got an error because you changed the original text. You just need to add the anchor element.