Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hola, no encuentro el error

  1. Cada uno de los aelementos que son hijos de tus figureelementos debe contener una imagen.

  2. Cada aelemento debe tener un targetatributo con el valor de _blank. No olvides los enlaces en los elementos de la lista.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" >     
    <meta name="Description" content="viajes a todo el mundo precios increibles">
    <title> Travel Agency Page </title>
 </head>
    <body>
  
    <h1>PROMOCIONES DE VIAJES</h1>
    <p>HACEMOS VIAJES A TODO EL MUNDO, CONSULTANOS! </p>
    <h2>Packages</h2>
    <p>Paquetes de acompanamento </p>
  

    <ul>
      <li> <a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels</a></li>
      <li><a href="https://www.freecodecamp.org/learn" target="_blank">Private Tours</a> </li>
    </ul>
    <h2>Top Itineraries</h2>
    
      <ol>
        <figure>
        <li> <a href="https://www.freecodecamp.org/learn" targer="_blank"> <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Coliseo Romano" ></a></li>
        <figcaption> asda </figcaption>
        </figure>
        <figure> 
          <li> <a href="https://www.freecodecamp.org/learn" target="_blank"> <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="algun lado del mundo"> </a> </li>
          <figcaption> asdsa </figcaption>
          </figure>
        <figure> 
        <li> <a href="https://www.freecodecamp.org/learn" target="_blank"> <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Caribe" > </a> </li>
        <figcaption> asdasd </figcaption>
         </figure> 
       </ol>




    <!-- 13 --> 
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum @Maleew!

Did the instructions ask you to add an ordered list?

And if the instructions had asked you to do that, your syntax should look similar to this:

<ol>
   <li>
      <figure>...</figure>
   </li>
   <li>
      <figure>...</figure>
   </li>
</ol>

I recommend reviewing the user stories to make sure you are implementing them exactly as asked.

Happy coding!