Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:
I have gone through the previous post and haven’t found a solutions to this yet. I need to add the target element of _blank to allow the link to open in a separate tab. However no matter where I put it I get the same answer that it is wrong. The instructions are unclear as to what i should do or even what I am doing wrong. Any help would be appreciated.

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</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 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36

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

Link to the challenge:

You need to ass the target attribute inside the opening anchor tag, with the value _target.
<a target="add the value here"
Inside the opening anchor tag <a after this add what you’re instructed to.
I hope this helps.
Thank you.

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