Build a Travel Agency Page

i have a h2 element after my unordered list and it keeps saying i don’t have one. I’ve looked for any problems with spellings, but i cant find anything wrong. Please help!

<meta charset="utf-8">

<title>Travel Agency Page</title>

<meta 

  name="description"

  content="Indulge in our exsperly crafted trips"

  />
<h1>Spain and Italy</h1>

<p>Travel to sunny Madrid and picturesque Rome</p>

<h2>Packages</h2>

<p>Sun drench yourself in Spains capital and style it out in trendy Rome</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="Roman colosseo at night">

  </a>

  <figcaption>Roman Colosseo</figcaption>

</figure>

<figure>

  <a href="https://www.freecodecamp.org/learn" target="\_blank">

  <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="The Alps at night">

  </a>

  <figcaption>The Alps</figcaption>

</figure>

<figure>

  <a href="https://www.freecodecamp.org/learn" target="\_blank">

  <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="The Sea">

  </a>

  <figcaption>The Sea</figcaption>

</figure>

double check your opening and closing tags

Oh yes the closing tag. How did i miss it. Thank you so much!