Learn HTML by Building a Cat Photo App - Step 14

HI guy, I really need help . I have been on this step for a long time. the system keeps on telling me that I need to have a TARGET attribute with the value _BLANK to anchor [a] element’s opening tag so that the link open in a new tap. can someone explain what this means or what TARGET and BLANK mean in the context of this statement

Your code so far

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

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

Link to the challenge:

hi there,

target is an attribute
you place it in the opening anchor tag.
You can find out more here

1 Like

thank u so much, I never thought it could be that simple

1 Like

html is one of the simplest programming languages out there.
You just have to follow the instructions and remember the syntax and it will become really easy for you to use.

1 Like

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