Build a Travel Agency Page - Build a Travel Agency Page

I have a problem with steps 31 and 32: my code is failing because the <a> elements might not have the correct href and target attributes. I’m not sure where the issue is. Can you help me identify and fix it?

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Travel Agency Page</title>
  <meta name="description" content="Free Web tutorials">
</head>
<body>
  <h1>France</h1>
  <p>France, a country located in Western Europe, is renowned for its rich history, diverse culture, exquisite cuisine, and stunning landscapes. From the romantic allure of Paris to the sun-soaked beaches of the French Riviera, and from the historic chateaux of the Loire Valley to the picturesque villages of Provence, France offers an array of experiences that captivate travelers from around the globe.</p>
  <h2>Packages</h2>
  <p>Cycle Provence: Paris to Loire Valley's magnificent destinations unfold over 6 days, featuring the Eiffel Tower and historic châteaux. Hotel Villathena in Paris and Novotel Côte de Nacre in Caen serve as bases for Seine River cruises and Normandy's historic beach visits, led by professional English guides.<br><br>
    Paris Explorer (8 Days): Parisian delights include lunch at the Eiffel Tower, private cooking classes with local chefs, and Versailles Palace's Hall of Mirrors tours. Montmartre's artistic legacy, perfume creation at Fragonard, and dinner at historic Chez Paul complement stays at Grand Chicago Paris.
  </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/colossed.jpg" alt="Rome">
    </a>
    <figcaption>Rome</figcaption>
  </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Mountains of Alpes">
      </a>
      <figcaption>Alpes</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Maldives">
      </a>
      <figcaption>Maldives</figcaption>
    </figure>
</body>
</html>

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Get Help > Ask for Help button located on the challenge.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

thanks i just found the solution