Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I am extremely stumped on questions 26 &28. Can anyone help me?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta name="description" content="Traveling with jake!">
    <meta Charset="UTF-8">
    <title>Jakes travel agency</title>
  </head>
  <body> 
    <h1> 
      <ul>
       <li>Greese 
       <li>Spain
       <li>Ibiza
       <li>Canada
       <li>Mexico
       <li>United States
      </ul>
    </h1>
    <p> Travel the world! Live out your dreams.</p>
    <h2> Packages </h2> 
    <p>we offer cruises with all you can eat, Flights, and more!</p>
     <ul>
       <li><a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels
       <li><a href="https://www.freecodecamp.org/learn" target="_blank">Private Tours 
     </ul><h2>Top Itineraries</h2>
       <figure>
   <a href="https://www.freecodecamp.org/learn" target="_blank">
   <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" 
   alt="Explore the amazon"></a>
   <figcaption>Mountains.</figcaption>
</figure> 
<figure>
   <a href="https://www.freecodecamp.org/learn" target="_blank">
   <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" 
   alt="Explore the amazon"></a>
   <figcaption>An Amphitheatre built in Rome.</figcaption>
</figure> 
<figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Explore the  amazon"></a>
    <figcaption>The Sea.</figcaption> 
</figure>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Firstly don’t forget to close your elements and please don’t nest elements inside of your h1 element.

Additionally you seem to have too many lists on your page. The challenge only wants one list with two items in it. (The list with the anchor elements)