Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

please help 4,5and 9 are all incorrect and I can’t figure out where I went wrong

Your code so far

<!DOCTYPE html>
<html lang="en">
 <body>
   <head>
    <meta charset="utf-8">
    <title> Travel Agency Page</title>
    <meta 
    name="Travel agency Page"
    content="the best way to take your dream vacation and still remain affordable"
</head>
<h1>destinatons for the trip in 2025</h1>
<p>this is a vacation I put together based off of my dream vacation</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>
<ol>
 <li>
   <figure>
     <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="collosseo in rome" href="https://www.freecodecamp.org/learn" target="_blank"></img>
      </a>
<figcaption>Visiting the colloseum in rome></figcaption>
   </figure>
   </li>
    <li>
   <figure>
     <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="the alps" href="https://www.freecodecamp.org/learn" target="_blank"></img>
      </a>
<figcaption>Hiking in the Swiss alps</figcaption>
   </figure>
   </li>
    <li>
   <figure>
     <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="the sea" href="https://www.freecodecamp.org/learn" target="_blank"></img>
      </a>
<figcaption>Sailing to remote surfing spots</figcaption>
   </figure>
   </li>
</ol>
</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/18.5 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

All elements need a closing angular bracket. Meta tags are self closing.

The value of your name attribute does not match that at test 5.

The body element opens after the head element.

Make these adjustments and it should pass