Learn HTML by Building a Cat Photo App - Step 12

Step 12 requires me to nest an anchor (a ) element, the only p element content visible in the browser should be Click here to view more cat photos. Double check the text, spacing, or punctuation of both the p and nested anchor element.

So I did I placed the anchor element inside the paragraph variable and set my code up like this.

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

But I’m not sure what’s missing or what’s wrong?

  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36

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

Link to the challenge:

you have put anchor tag wrong place so it won’t able to work and remove the extra text

You have the phrase ‘cat photos’ twice in your code, but it should only be there once

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