Build a Cat Photo App - Paso 14

Cuéntanos qué está pasando:

Hola, buen dia, desde ayer el codigo del paso 14 no me lo toma, quisiera saber cual es el error porque no me deja avanzar, consulte con mi marido y un amigo y esta bien la codificacion

Tu código hasta el momento

<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>
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
      </main>
      <p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>

<!-- User Editable Region -->

  </body>
</html>

Información de tu navegador:

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

Información del Desafío:

Build a Cat Photo App - Paso 14

You’ve changed the code too much by re-arranging elements. Please reset the step and try again.

Has modificado demasiado el código al reorganizar los elementos. Reinicia el paso e inténtalo de nuevo.

Here is the original code:
Aquí está el código original:

    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Everyone loves cute cats online!</p>
      <p>See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
    </main>

See how everything is contained within the main element?
¿Ves cómo todo está dentro del elemento main?

See how “See more cat photos” is the last sentence?
¿Ves cómo la última frase dice “See more cat photos”?