Learn HTML by Building a Cat Photo App - Step 14

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 <a href="https://freecatphotoapp.com"target_blank>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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.203

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

Link to the challenge:

Please do not create duplicate topics for the same challenge/project question(s). This duplicate topic has been unlisted.

Thank you.

@saeed.lobbad we can use this one. @DobarBREND is right that multiple topics cant be created for the same challenge, but I told you to in your other post so we could get all your code and a link to the challenge instead of just the screenshot in the other post. So, I will close the other post and we can use this one

This is close, but you wont to follow this structure when adding an attribute.

attribute=“value”

In the above code, your attribute would be target and _blank is the value. You have it in the right spot, but you just need to fix it so it follow the example

1 Like

Thank you for the help. I changed target_black into target=_blank and it worked. Sorry about all of my trouble with posting.

1 Like

No worries, just for future reference using that help button is the best way to ask a question for a challenge. It gives us everything we need to be able to help you the best.