Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I have trouble passing tests 16 and 17. It says to create a

element below the 2nd

tag, followed by a ul element with 2 li items. I have done the same with requisite links. But still getting 16 and 17 as wrong. What can I do differently?

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Travel Agency Page</title>
  <meta name="description" content="Book exotic holidays">
</head>
<body>
  <h1>Travel to Maldives, Sychelles and other exotic nations</h2>
  <p>Plan the perfect honeymoon with the most amazing beaches and private oceanfronts<p>
    
  <h2>Packages</h2>
  <p>There are two option of packages to choose from. One for solo travellers and one for a group travellers or a solo traveller who wants to meet new people along the way.</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="Colosseo" /></a>
      <figcaption>The Magnificient Colosseo</figcaption>
    </figure>

    <figure>
     <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg"
        alt="Alps"/></a>
        <figcaption>Endless Alps</figcaption>
      </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Ocean Cruise" /></a>
      <figcaption>Roam the open seas further than the horizons
        </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/143.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Look closely at your closing tags, please.