Aprende HTML construyendo una aplicación de fotos de gatos - Paso 14

Tell us what’s happening:

I wrote this code:

See more in our gallery.

and I don't know why the "_blank" attribute doesn't work, I searched for examples on internet and for me this code is wright but, obviously it doesn't.... Might be someone so kind to tell me what is going on here? Please.

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" target=" _blank" 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:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36

Challenge Information:

Aprende HTML construyendo una aplicación de fotos de gatos - Paso 14

You have an extra space before _blank

Tenes un espacio en blanco antes de _blank. Deberias borrarlo (esta entre la apertura de comillas dobles y el guion bajo antes de la palabra blank):

Espero que te ayude. Por favor indica si fue solucionado.