Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

It’s telling me that I need to wrap my unordered list items in an anchor element but I thought I did that. Any help would be greatly appreciated.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head> <meta charset="utf-8">
  <title>Travel Agency Page</title>
  <meta name="description" content="An epic website that will lead you to your wildest destinations!">
  
    </head>
<body>
  <h1>Your Wildest Travel Destinations</h1>
  <p>By clicking on this website, you have taken the first step towards experiencing a truly wild vacation. Through our travel agency, you can visit such places as Missouri, Arkansas, and even Mississippi!</p>
  <h2>Packages</h2>
  <p>If you choose to travel through us, you will be given a wild and yet grounded tour of these wonderful destinations. We will embark on such adventures as going to the local Starbucks and maybe even the local Goodwill store!</p>
  <ul><a href="https://www.freecodecamp.org/learn" target="_blank"><li>Group Travels</li></a>
  <a href="https://www.freecodecamp.org/learn" target="_blank"><li>Private Tours</li></a></ul>
  <h2>Top Itineraries</h2>
  <figure><a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://www.planetware.com/photos-large/USMO/missouri-st-louis-arch.jpg" alt="St. Louis Gateway arch">
  </a>
  <figcaption>Breathtaking St. Louis Gateway Arch in Missouri!</figcaption>
    </figure>
 <figure><a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://determined.uark.edu/_resources/images/WelcomeToFayetteville-2023.jpg" alt="Arkansas state university">
  </a>
  <figcaption>Arkansas State University in case you want to attend school while vacationing!</figcaption>
    </figure>
     <figure><a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://p1.socds.net/account/6062/7J3jY-b7YKX.jpg" alt="Hardees in Mississippi">
  </a>
  <figcaption>Scrumptious fine dining in Mississippi!</figcaption>
    </figure>
</body>
    </html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6.1 Safari/605.1.15

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

https://www.freecodecamp.org/learn/full-stack-developer/lab-travel-agency-page/build-a-travel-agency-page

Welcome to the forum @HECKDIVER02

Make sure the anchor element only nests the text, and not an element.

Happy coding