Learn HTML by Building a Cat Photo App - Step 12

Tell us what’s happening:

I feel like I have done everything I could right, it is even showing up in the browser exactly what they are asking of me but it still tells me to try again.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

     <p> See more <a href="https://freecatphotoapp.com"</a>cat photos</a> in our gallery</p>

<!-- User Editable Region -->

      <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/17.1 Safari/605.1.15

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 12

This doesn’t look right. Closing and opening tags have to be separate.

Separate how? Sorry I’m very new to this

there should be a closing tag “>” for the first anchor. Like this <a href=""></a>

You shouldn’t have deleted your other anchor element - it gives you an example of what an anchor element is supposed to look like. I’d reset the code and put that example back,

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