Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

What is wrong with the last href link?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8"/>
    <title>Travel Agency Page</title>
    </head>
    <body>
    <h1>Travel destinations</h1>
    <p>Offer travel opportunities</p>
      <h2>Packages</h2>
      <p>Briefly introduce the various package</p>
      <ul>
        <li><a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels</a></li>
        <li><a href="https://wwwfreecodecamp.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="Colosseum image"></a>
  <figcaption>Visit the colosseum in Rome</figcaption>
  </figure>
    <figure>
    <a href="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Alps image"></a>
    <figcaption>Explore 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="Sea image"></a>
<figcaption>Relax by the Sea</figcaption>
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
  <img src="https://www.freecodecamp.org/learn" alt="slogan"></a>
  <figcaption>learn on freeCodeCamp</figcaption>
  </figure>
  </body>
   </html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi and welcome to the forum!
There is nothing wrong with the last anchor element. However the only error you receive is due to your anchor elements not having the same href value.
Review your code and hopefully you will find the issue.
Hope this helps!