Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:
Describe your issue in detail here.
i don’t know how to put “_blank” in the opening anchor

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">cat photos='_blank'</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/114.0.0.0 Safari/537.36 Edg/114.0.1823.82

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

Link to the challenge:

The _blank should go in the opening anchor tag which should have a target attribute.

1 Like

Your target is an attribute. Just like href is and its content is “Https://freecatphotoapp.com”.

They would like for you to add a target attribute with its content as _blank to your anchor tag.

2 Likes

Reset step.

In the existing opening <a> tag add the attribute and its value following the rule:

...<a href="url" attribute="value">text</a>...

‘target’ is the attribute,
“_blank” is the value.

2 Likes