Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:

I am having a hard time with this

Everyone loves cute cats online!

(turn the text cute cats into an anchor elements that links to https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg.

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 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/130.0.0.0 Safari/537.36 Edg/130.0.0.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 14

Hi and welcome to the forum!
This step wants you to turn a text into a link. To do that, you have to wrap your text around an anchor <a></a> element.
For example, turning the word “Football” into a link would look something like this:
<a href="">Football</a>
You can then add your link inside the “href” attribute.
Now reset your code and look for the text that the step wants you to turn into a link.
Hope this helps!