Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:
Describe your issue in detail here.
I cant seem to solve step 12, it keeps giving me problems and the hints are too hard to figure out.

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

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

Link to the challenge:

few things to note:

  • “a” tag in “p” is missing closing tag “</a>”
  • “a” tag is also missing "cat photos’ text in it and a ‘dot’ right after ‘</a>’

please feel to adjust those in your code and try it out that should be enough for this step

otherwise ‘restart this step’ an d simply replace ‘cat photos’ text in ‘p’ tag with 'given ‘a’ tag, which has everything is needed for this step

happy learning :slight_smile:

thanks this helped i posted this problem but no one replied thanks

1 Like

Thanks very much. I tried it and it worked

1 Like

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