Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

hi there, so i have tried so many times about 18. You should have two items in your unordered list. i even asked chatgpt to help me, but still doesnt work? thank you for your time.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Travel Agency Page</title>
    <meta name="description" content="wode website" />
  </head>
  <body>
    <h1>idk maybe california</h1>
    <p>explore exciting travel opportunity.</p>

    <h2>Packages</h2>
    <p>we offer a variety of packages.</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>
    <p>various packages</p>
    <ul>
      <li><a href="https://www.freecodecamp.org/learn" target="_blank">cat</a></li>
      <li><a href="https://www.freecodecamp.org/learn" target="_blank">dog</a></li>
    </ul>

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

    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Alps Mountains" />
      </a>
      <figcaption>Scenic views of the Alps</figcaption>
    </figure>

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

If you look at story 9 you are only asked to add 2 ul items with specific headings. The UL items you’ve added further on are not required. Remove those and it should pass