Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
I’m getting a little tripped up on step 12. Any advice will be appreciated thanks!

<a href="https://freecatphotoapp.com">cat photos</a></p> t

<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more cat photos.<a href="https://freecatphotoapp.com">cat photos</a></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/105.0.0.0 Safari/537.36

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

Link to the challenge:

Right now your attempt probably shows up like this:

Click here to view more cat photos. cat photos

But they actually need you to make this instead:

Click here to view more cat photos.

So just reset this step then add your new anchor tag to the left and right of the words cat photos (make sure you do not enclose the period in the new link).

Still having an issue solving this code. This is the code I entered.

<p>Click here to view more cat photos <href="cat photos"</p>
      <a href="https://freecatphotoapp.com">cat photos</a>

Make sure your anchor looks like the following example:

<a href=“some link here”>Click Me!</a>

But in your case the Click Me! part is “cat photos” and the link is whatever they gave you.

Thank you very much, I figured it out!

1 Like

Hej, i have the same problem

<p><a href="https://freecatphotoapp.com">cat photos!</a></p>

But it dosesn’t workPreformatted text

hello, i think your question is slightly different, so please go ahead and open a new topic by clicking on the Ask for Help button in your challenge (it will pull in the code plus other details we need).
Don’t forget to fill in the field for describing the problem too…

1 Like

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