Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I have about 4 steps that are wrong and I cant seem to figure it out, the steps are 19, 22, 26, and 28. If anybody could help that would be greatly appreciated.

Your code so far

<!DOCTYPE html>
<Html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Hamza's Travel Agency</title>
    <meta name="description" content="This is a Travel Agency Page used to help people find flights">
  </head>
  <body> 
    <h1> Travel Destinations </h1>
    <p> Our main goal over here in this agency is to present many different travel oppurtunities for a cheaper price than your normal travel agencies & bookings.</p>
    <h2>Packages</h2>
    <p> At this agency we have multiple packages such as travelling across countries in Europe, some in Asia, and also North America.</p>
<ul>
  <li><a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels</li>
<li>Private Tours<a href="https://www.freecodecamp.org/learn" target="_blank"></li>
</ul>

<h2>Top Itineraries</h2>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
    <figcaption> An airplane flying.</figcaption>
    <img src="https://t3.ftcdn.net/jpg/03/06/22/80/360_F_306228011_2jldV5x45r0Ou3IiFJNMj3PDJPXKfgEX.jpg" alt="A plane">
  </figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank"> 
  <figcaption>BUMBA</figcaption>  
  <img src="https://media.istockphoto.com/id/1256696490/photo/used-concrete-asphalt-airport-empty-runway-with-many-braking-marks-markings-for-landings-and.jpg?s=612x612&w=0&k=20&c=zBIW1UQmmBM3zpmzXbQXX-8gY9x43G7JrABx87oyn7U=" alt="Just a Runway">
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
  <figcaption>BUMBA</figcaption>
  <img src="https://images.birdfact.com/production/how-do-birds-fly.jpg?w=1792&h=1024&q=80&fm=webp&fit=clip&dm=1657019948&s=79d320792077e9e246f3cceacd0f1876" alt="A bird soaring high">
</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
https://www.freecodecamp.org/learn/full-stack-developer/lab-travel-agency-page/build-a-travel-agency-page

for #18, you should check the anchor elements you made are well-formed. (do they have their opening and closing tag? Do they have link text in between the tags?)