Learn HTML by Building a Cat Photo App - Step 12

In the text of your p element, turn the words cat photos into a link by adding opening and closing anchor (a ) tags around these words. Then set the href attribute to `https://freecatphotoapp.com. i cant seem to get the right code ,am stuck at step 12,i need help

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

<!-- User Editable Region -->

      
      <a href="https://freecatphotoapp.com"><p>See more cat photos in our gallery.</p>
      </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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

Welcome to the forum @evelynsanyu25 !

The example provided for this step is excellent in providing us with guidance.

It shows how to add the anchor around the text we are turning into a link while not changing anything.

Here is how the example would have appeared before the anchor was added to it.

<p>I think freeCodeCamp is great.</p>

Below is how it appears after the anchor has been added to it.

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

Notice how the p element statement remains the same.

Nothing removed or changed.

The anchor touching the text freeCodeCamp on both sides.

I hope this helps you move on!

Happy coding! :sun_with_face:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.