Learn HTML by Building a Cat Photo App - Step 12

I am probably by far the slowest millennial in the world when it comes to technology so I am not sure if the problem is posted with this but if so I am so confused what am I missing? What I am doing wrong? Everything was so easy up until now. Im so confused I want to give up already! I just don’t understand what I could possibly be doing wrong. Please help me so I may continue insetter spirit! If the problem did not post please tell me how to post it.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more <a href="https://freecatphotoapp.com=">cat photos.</a>
      <a href="https://freecatphotoapp.com">link to cat pictures</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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Safari/605.1.15

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

Link to the challenge:

Originally the code shown to you was
<p>Click here to view more cat photos.</p>

After you added the anchor tag, you deleted the closing p tag.
Also the period (dot) should not be part of the linked text.

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