Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I can’t get through No. 31. What am I missing here?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="Book your next dream vacation with our travel agency. We offer exclusive deals on flights, hotels, and tours.">
  </head>
  <body>
    <h1>Travel Destinations 2026</h1>
    <p>Explore exciting opportunities to visit breathtaking destinations around the world with us. We provide all the details you need to know for your travel.</p>
    <h2>Packages</h2>
    <p>There are two package options to choose from: the first one is ideal for group travellers and the second one is favorable for those who love to go on a private tour.</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>
  <li>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="colosseo in Rome" href="https://www.freecodecamp.org/learn" target="_blank">
      </a>
  <figcaption>The Colosseum of Rome.</figcaption>
      </figure>
    </li>
   <li>
      <figure>
        <a href="https://www.freedcodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="the alps" href="https://www.freecodecamp.org/learn" target="_blank">
        </a>
      <figcaption>Hiking in the Dolomites.</figcaption>
      </figure>
    </li>
    <li>
      <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="the sea" href="https://www.freecodecamp.org/learn" target="_blank">
        </a>
        <figcaption>Sailing afar in different islands.</figcaption>
      </figure>
    </li>
</ol>
</body>
</html>


Your browser information:

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

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

double check all the href at least one of them is not correct

I got it! It was a typo. Thanks a lot!