I have been on this for hours I don't know what to do in step 12 cat photo app

Tell us what’s happening:
Describe your issue in detail here.

  **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">cat photos></a>
    <a href="https://freecatphotoapp.com"></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 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36

Challenge: Step 12

Link to the challenge:

You are close. First, you have two a elements when you should only have one. The one by itself should be deleted. Second, you have the a element properly placed within the p element you are just missing two crucial things. The first thing you are missing is the period at the end of the sentence. The second thing you are missing is your closing p element tag </p>. Remember, the period is not intended to be a part of the link!

Thank you… I figured it out

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