Build a Cat Photo App - Step 14

Tell us what’s happening:

I need help at step 14 of the Catapp
im having trouble turining th exisiting text cute cats into an anchor element that links to a link. The hint says there should be a new anchor element in the first (p) elements what does that mean

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>

<!-- User Editable Region -->

      <p>See more <a href="https://freecatphotoapp.com">cat photo in our gallery.</p> </a>
  <p> cute cats  <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."> </p>
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Cat Photo App - Step 14

Welcome to the forum @D34dlymuffin!

It looks like you may have changed the starting code in areas you were not asked to change, which will cause the tests to fail. Please click the reset button to restore the original code and try again.

image


In this existing paragraph, you are asked to turn the words “cute cats” into a link. Refer to the paragraph beneath that one where you turned the words “cat photos” into a link. You will use the same syntax here. Do no change any of the other starting code.

Happy coding!

Hi buddy, Welcome to the forum..!!

Here is the example below in your given code how the word already get turned into the link address here..

<p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>

Here you need to make the same thing here in order to make the word the link..

Hope this helped you..