Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

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

<!-- User Editable Region -->

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

<!-- User Editable Region -->

      <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/605.1.15 (KHTML, like Gecko) Version/16.5 Safari/605.1.15

Challenge: Learn HTML by Building a Cat Photo App - Step 12

Link to the challenge:

This isn’t how you turn something into a link.

Look at how you turned the words “link to cat pictures” into a link below the p element. You did that by wrapping them in a tags. That’s what you need to do to the words “cat photos” in the middle of the p element.

Welcome to the community!

This step requires us to turn the words cat photos into a link while allowing everything else to remain unchanged.

Here is the example from this step where the original text would have been

I think freeCodeCamp is great. 

has been turned in the link

<p>I think <a href="https://www.freecodecamp.org">freeCodeCamp</a> is great.</p>

Notice how the anchor has been added to the existing p element statement without changing anything else.

Result:

I think freeCodeCamp is great.

I hope this helps you.