Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Its asking for a figcaption but i think i correctly done everything and now im just confused.

Your code so far

<!DOCTYPE html> 
<html lang="en">
<head> 
<meta charset="utf-8"> 
<meta name="description"
      content="The best Travel Agency in the world".>
<title> Travel Agency Page </title> 
</head> 
<body>
<h1> Roaming Rome </h1> 
<p> Are you bored of sitting at home all day on the couch? 9-5 life getting tiring? Introducing our all expenses included week long trip to stunning Italy. Experience the breath taking water canals, the exquisite taste of the rich food, and a week long heavenly paradise. </p> 
<h2> Packages </h2> 
<p> You can go with our relaxation package or our deluxe packages. </p> 
<ul> 
 <li><a href="https://www.freecodecamp.org/learn" target="_blank"> Group Travels </li> </a>
 <li><a href="https://www.freecodecamp.org/learn" target="_blank">
  Private Tours </li> </a>
 </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 Roman Masterpiece"> </a> 
     <figcaption>Roman History</figcaption>
     </figure> 
      <figure> 
         <a href="https://www.freecodecamp.org/learn" target="_blank"> 
     <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="The beautiful rocky moutains"></a>
     <figcaption>Beautiful Landscape</figcaption> 
     </figure> 
     <figure> 
       <a href="https://www.freecodecamp.org/learn" target="_blank"></a> 
       <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="beautiful sea">
       <figcaption>Refreshing Fun Seas</figcaption> 
       </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/136.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

The rule to pass that says
. Each figure element should contain a figcaption element as its second child.

Take a look again because not all your figcaptions are the second child in your figure elements. Look closely

you are also failing
28. Each of the a elements that are children of your figure elements should contain an image.

Take a closer look theres an ‘a’ elment that does not contain an image