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>