Learn HTML by Building a Cat Photo App - Step 14 Add a target attribute with the value _blank to the anchor (a) element's opening tag, so that the link opens in

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

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more <a "_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
    <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/105.0.0.0 Safari/537.36

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

Link to the challenge:

Hello there.

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.

I’m lost on this as well, there was no description of what a target is or how to use it prior to this step and there are no details. Someone who is just learning is supposed to just know what target means?

3 Likes

Target is mentioned is an “attribute”. Hopefully this has meaning to you as you should have learned about attributes in an earlier step. Attributes you may know are href and src. They are added to the opening tags of html element. Anyway, if you need more help check the following post

Or you can review the step number 8 of the cat photo app, or google “html attributes” or click on the Ask for Help button in step 14 and we can help you further.