Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

i couldent pass the test, i only have one instruction left that always telling me to put ancher element in all ordered list but i already did, so i dont know whats happening

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta name="description" content="travel agency">
    <meta charset="utf-8">
    <title>wasili tours</title>
  </head>
  <body>
    <h1> visit malawi</h1>
    <p>Tradional dances and musicals instruments,food,mueseum.art garrely parks and our beautiful rivers</p>
    <h2>Packages</h2>
    <p>we offer best holiday for every one,we have luxury food and shelter for guest and tour to our beatiful buildings,game reserves and our lakes like lake malawi</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>
    <ol>
      <li>
        <figure>
          <a href="https://www.freecodecamp.org/learn" target="_blank" >
            <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="coloso">
          </a>
          <figcaption>buildings</figcaption>
        </figure>
      <li>
        <figure>
          <a href="https://www.freecodecamp.org/learn" target="_blank" >
           <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="labs">
           </a>
          <figcaption>mountains</figcaption>
        </figure>
      <li>
        <figure> 
          <a href="https://www.freecodecamp.org/learn" target="_blank" >
            <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="sea">
          </a>
          <figcaption>beach and sea</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/133.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

your issue is here, these li elements were not asked, so the tests just check for all li elements, and these do not have an a as direct child

also you are missing all closing tags, which can give other issues