Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

buen día, no he podido solucionar este error por ningún lado. si alguien me puede colaborar estaría agradecido.

  1. Your second p element should introduce briefly the various packages.
  2. You should have an unordered list element below your second p element.
    // tests completed

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta name="">
    <meta charset="utf-8" name="description" content="Travel Agency Page">
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Travel all over Europe</h1>
    <p>You can take a trip to Italy to see the Roman Coliseum, visit its beautiful natural parks, and visit its fantastic islands.<p/>
    <h2>Packages</h2>
    <p>You can choose from a variety of travel options, in groups, alone, or as a couple, you can discover different places, see different people, and have fun with different activities, depending on your interests.</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>

    <figure>
     <a href="https://www.freecodecamp.org/learn" target="_blank"> <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Roman Colosseum"></a>
      <figcaption >Roman Colosseum</figcaption>
    </figure>

    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank"> <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Natural landscapes"></a>
      <figcaption >Natural landscapes</figcaption>
    </figure>

    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Open sea trips"/></a>
      <figcaption>Open sea trips</figcaption>
    </figure>
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum @viandreedd

You have a malformed closing tag.

Happy coding

1 Like