Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I do not understand what it means when it says first and second child. I have tried every way i know how to write the Img and figure codes but I keep getting #26 and #28 wrong

Your code so far

<!DOCTYPE html>
<html>
<html lang="en">
 <head>
   <meta charset="utf-8">
   <title>Travel Agency Page</title>
   <meta name="description" content="Get the best out of your trip to Ireland">
   </head>
   <body>
   <h1>Explore Ireland</h1>
   <p>Traditional pubs, Castles, Beautiful glacire formed landscape and much more. You decide what you want to see from our wide range of guides and tours</p>
   <h2>Packages</h2>
   <p>Wether you are by your self, with a partner, family or a group of friends. We have the perfect package for you</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"> </a>
 <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="pubs"></img>
 <figcaption>
   Trditional pubs
   </figcaption>
   </figure>
   <figure>
     <a href="https://www.freecodecamp.org/learn" target="_blank"> </a>
     <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="castles"></img>
     <figcaption>
       One of many catles
       </figcaption>
      </figure>
      <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank"></a>
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Landscape"></img>
        <figcaption>
          Beautiful glacier carved landscape
          </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/134.0.0.0 Safari/537.36 Edg/134.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

for example here:

      <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank"></a>
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Landscape"></img>
        <figcaption>
          Beautiful glacier carved landscape
          </figcaption>
          </figure>

inside the figure element there are in order an a, an img and a figcatpion, they are respectively the first, second and third child

double check where the img should go