Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:
Describe your issue in detail here.
PLEASE HELP ME UNDERSTAND THE INSTRUCTIONS,THANKYOU.
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 _blank 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.61

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

Link to the challenge:

please click the reset button (which looks like an arrow turning) to return the code to its initial state because you changed the spacing in the link text and that’s not going to work anymore.
After that, instead of writing _blank as you did above, write the name of the attribute (target) followed by an equal sign followed by “_blank”

Hi @finch ,
We can pass some “possible attributes” in HTML tags.

For example,
<a href="https://mystupidaddress.com"></a>
here, href is an attribute for <a>. most of the attribute(s) has a value and it can be assigned with = sign.

In the above example, href is the attribute & https://mystupidaddress.com becomes the value to that attribute.

So,
You are asked to include target attribute with the value of _blank

Hope this will help you. :slightly_smiling_face: