Learn HTML by Building a Cat Photo App - Step 14

I am stuck on step 14; " Add a target attribute with the value _blank to the anchor (a ) element’s opening tag, so that the link opens in a new tab.", I am not sure what exactly what I should add to my code

<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>.</p>
      <a_blank>
      <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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36

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

Link to the challenge:

Welcome to the forums! Do you remember how to correctly add an attribute to an element?

write like this
Mod Edit: SOLUTION REMOVED

To be fair mate i am stuck on this to im not to sure what to do

what you have to do is find the line of code that has the link. You should have an anchor. All they want you to do is create the (target=“_blank”) inside the anchor. This element should be added next to the (href) element

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

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