Need help with build a Travel Agency

I completed all the steps but 28 isnt working
28. Each of the a elements that are children of your figure elements should contain an image.
Here is my current code

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="We are a travel agency who will find the best vacation for you!" />
    </head>
    <body>
    <h1>Our travel destinanations</h1>
    <p> We offer travel destinations such as Maldives, Malaga And Madrid.</p>
    <h2>Packages</h2>
    <p>We have packages for Malaga that include Hotel Stay, All-you-can-eat and flights
      <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>
    <!--First figure-->
    <figure>
       <a href="https://www.freecodecamp.org/learn" target="_blank">
       <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Coloseum"/>
        </a>
      <figcaption>Rome
          </figcaption>
          </figure>
          <!-- Second Figure-->
          <figure>
            <a href="https://www.freecodecamp.org/learn" target="_blank">
            
      <figcaption>The alps!
          <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Alps"/>
          </a>
          </figcaption>
          </figure>
          <!--Third Figure-->
          <figure>
            <a href="https://www.freecodecamp.org/learn" target="_blank">
            
      <figcaption> Beatiful Sea
          <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Sea"/>
          </a>
          </figcaption>
          </figure>
    </body>
    </html>

Hi. Please can you link to the challenge you are stuck on.

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 Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The 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.

I can see that two of your img elements done have opening anchor tags around them.