Learn HTML by Building a Cat Photo App - Step 13

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

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 cat photos in our gallery.<a<a herf="https://freecatphotoapp.com">cat photos<a/></p>
      <a<a herf="https://freecatphotoapp.com">cat photos<a/>

      

<!-- User Editable Region -->

      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" a1lt="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/116.0.0.0 Safari/537.36 OPR/102.0.0.0

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

Link to the challenge:

1 Like

Way to go! First you have an extra opening ‘a’ tag. I think to pass first delete the ‘<a’ tag that you have just before the opening ‘a’ tags, on both lines. Copy/cut one of the links in full, from opening ‘a’ tag to closing ‘a’ tag. Move cursor over inside the ‘p’ tag and delete ‘cat photos’ so you can paste your link in that exact same spot. Delete any extra ‘a’ tags, you should only have the one ‘a’ tag inside the ‘p’ tag when you are finished.