Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I have been unable to go beyond this stage. I find it difficult to identfy what I am doing wrong. I also tried the existing response in the community yet

See more cat photos in our gallery cat photos

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 <a href="https://freecatphotoapp.com">Cat photos</a> Cat photos.</p> 

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

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

1 Like

Welcome to the community @olawaleomiyale !

This step asks us to place the anchor tags around only the text cat photos while it remains within the p element statement.

Suggestion: Reset and use the example provided in the instructions to enter the anchor correctly to turn cat photos into a link.

Here is an example on how to do that.

Example Only:

<p>The bright <a href="url provided">orange paint</a> was visible to everyone.</p>

orange paint would turn into a link orange paint

I hope this helps you.

Wishing you good progress.

2 Likes

EarthDust! Thank you very much it worked!

1 Like

You are very welcome @olawaleomiyale !

I am glad to hear you are able to move on in your coding journey.

Wishing you good progress.

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