Build a Travel Agency Page - step 9

Tell us what’s happening:

Having trouble with step 9, the test says the li text needs to be wrapped in the anchor element. The code looks right to me, I must be missing something though, passed all of the other tests. Please help

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>

    <title>Travel Agency Page</title>
    <meta charset="UTF-8"/>
      <meta name="description" content="Europe"/>
 
   </head>
      <body>
        <h1>Discover Europe, one country at a time!</h1>
        <p>Discover many beutiful countries and locations including Spain, Italy, Portugal, France, Germany, and more!</p>
          <h2>Packages</h2>
          <p>We have many packages available, go to just one location or see all of Europe with our Premium Tourist itinerary!</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 Roman coloseum"></a>
  <figcaption>Rome Package!</figcaption>
  
 
 </figure>
 <figure>

   <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Snowy mountains at sunset"></a>
   <figcaption>Swiss Alps package!</figcaption>
 </figure>
 <figure>
 <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="sailboat floating on crystal clear ocean"></a>
 <figcaption>Mediterranean package!</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/135.0.0.0 Safari/537.36 Edg/135.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi @bubbymunkers !

Welcome to the forum!

You text is wrong here

and here

re read through the error messages more carefully so you can resolve the error. The text needs to match exactly and yours doesn’t.

once you fix that, then it will pass

Thank you so much!!!