Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I have a problem with passing test 31 ad 32 even though im sure ive done what it asked

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta title="Travel Agency Page">
    <meta name="description" content="Discover Travel Agencies on this page">
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Travel Destinations</h1>
    <p>There are many travel opportunities</p>
    
    <h2>Packages</h2>
    <p>These are the packages to choose from</p>
    <ul>
      <li><a href="#">Group Travels</a></li>
      <li><a href="#">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="The Colosseum in Rome">
    </a>
    <figcaption>The Colosseum</figcaption>
  </figure>

  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="The Alps mountain range">
    </a>
    <figcaption>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="A calm sea">
    </a>
    <figcaption>The Sea</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/137.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

the second part of the hint text says “Don’t forget the links in the list items.”, did you check if you made the right changes to those elements?

Thank you i missed that!