Tell us what’s happening:
I am stuck in step 26"Each figure element should contain a figcaption element as its second child." But I can’t find anything wrong.
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<title>Travel Agency Page</title>
<meta charset="utf-8">
<meta name="description" content="Discover new vacation spots around the world from America, Asia and Europe."/>
</head>
<body>
<h1> Discover new vacation spots around the world</h1>
<p>From America, Asia and Europe. Choose where you wants to spend your next vacation.</p>
<h2>Packages</h2>
<p>We offer an extensive range of holiday solutions to accommodate the needs of all our clients. From daily excursions in the most beautiful cities, to thorough tours of hidden villages and medieval towns to discover the world's lesser known spots.</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="the colosseum in the early evening."></a>
<figcaption>The Colosseum</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Valleys and Mountains"></a>
<figcaption>Valleys and Mountains</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Beautiful Blue Beaches"</a>
<figcaption>Beautiful Beaches</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/138.0.0.0 Safari/537.36
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page