Learn HTML by Building a Cat Photo App - Step 14

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

<!-- User Editable Region -->

      <p>See more <a_blank href="https://freecatphotoapp.com">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>

I am having difficulties with this level. need help

Hello.

The correct way to add a target attribute is like this example:

<a href="https://www.somelink.com" target="VALUE">text link</a>

In this case, the VALUE is _blank

I hope this help you.

Greets.

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