Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:
where am i supposed to add the target attribute “_blank” i cant seem to fix

**Your code

<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>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14526.89.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.133 Safari/537.36

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

Link to the challenge:

You always add attributes to the opening tag of the corresponding HTML element. Attributes have the following syntax:

property="value"

You can add multiple different attributes to an element by separating them with a single space, for example:

<p class="bold" color="red">some example text</p>
1 Like