Learn HTML by Building a Cat Photo App - Step 12

The challenge is to turn the words cat photos into a link to https://freecatphotoapp.com by adding opening and closing anchor (a ) tags around these words. Its giving me an error that the only p element content visible in the browser should be ‘See more cat photos in our gallery.’

My code:

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

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

Link to the challenge:

Keep the anchor link they have that says <a href="https://freecatphotoapp.com">link to cat pictures</a> exactly as it is and add that same a anchor element around the words “cat photos” in the paragraph. Don’t change the a element below it at all and you’re good to go!

1 Like

Now the href value is not assigned it says

This is what you should have. Notice the anchor link in the p element and that is the href that they specify in the instructions for the challenge:

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

Well that figures… Much obliged my good man! Thank you kindly for your help.

1 Like

No worries! Happy Coding!

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