Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I am having issues with steps 26, and 28. I feel I have done everything that was asked for the lesson. Maybe there is a glitch in the code tester.? Some guidance please!

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="vacation destinations"</meta>
  </head>
  <body>
    <h1>There are thousands of destinations to choose from</h1>
    <p>We offer various modes of travel ranging from flights to crusies at very competetive prices!</p>
    <h2>Packages</h2>
    <p>Our packages include flight and hotel, rental car, all you can eat, and discounts to city atttractions among other benefits.</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"><figcaption>Roman Colosseum</figcaption><img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Colosseum"></a>
    </figure>
    <figure> 
      <a href="https://www.freecodecamp.org/learn" target="_blank"><figcaption>Mountains</figcaption><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Mountains"></a>
    </figure>
    <figure>  
      <a href="https://www.freecodecamp.org/learn" target="_blank"><figcaption>Boat at sea</figcaption><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Boat at sea"></a></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/138.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Please fix the syntax errors you currently have in your code first.
This may resolve one or more of the issues and if not, we can help you further if you are still stuck.

To see a list of errors in your current code, copy and paste it into an online html validator like the one below.

Then fix the errors shown by the Check button one by one.

Please review this code for syntax errors.

Each of the a elements that are children of your figure elements should contain an image.

Your a element contains both an img element and the figcaption element, so the figcaption element is not the second child inside the figure element.