Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I have completed the whole lab, but I’m still getting an X on step #31 I think I have done everything right. Is there anything wrong with my syntax?

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="description" content="A magic trip source">
  <title>Magic carpet travels</title>
  </head>  
<body>
  <h1>Discover the Great Beyond!</h1>
  <p>Come and joins us on a trip of a life time, You'll discover new places, new foods, new adventures!</p>
  <h2>Packages</h2>
  <p>We offer expert trip guides, they will make sure that your trip is a fun and safe trip.</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>
<figure>
  <a href="https://www.freecodecamp.org/learn"target="_blank">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Coloseoum ruins"></a>
  <figcaption>Rome Trip</figcaption>
</figure> 
<figure>
  <a href="https://cdn.freecodecamp.org/learn" target="_blank">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg"alt="Apls"></a>
  <figcaption>Alps Trip</figcaption>
</figure>
<figure>
  <a href="https://cdn.freecodecamp.org/learn" target="_blank">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg"alt="Calm sea"></a>
  <figcaption>Sea Trip</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/134.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-travel-agency-page/build-a-travel-agency-page`Preformatted text`

Hi,
Make sure to check the href attributes. Do they all have the same url?

Oh!!! How did I miss that!!
Thank you!!