Travel Agency page

I am struggling with understanding why my code is not working. It wants a P element that briefly explains the introduces the packages offered on the website but no matter how I change the description it does not recognise it as correct. Rule 17 is also not registering as correct even though I can see the unordered list under the second P element in my code.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>
      Travel Agency Page
      </title>
      <meta name="description" Content="Travel Destinations">
    </head>


  <body>
    <h1>Travel Destinations</h1>

      <p>
        Whe offer packages for the following destinations:

        <li>
          Rome
          </li>
          <li>
            Swiss Alps
            </li>
          <li>
            Ocean Cruise
            </li>
        </p>

        <h2>Packages</h2>
          
      <p>
        Explore the Roman colosseum. Trek through snow as you climb the Swiss Alps. Or take a relaxing cruise through crystal clear and tranquil ocean waters by booking Group or Private Tours through one of our travel centers.
          
          </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="Picture of Colosseum in Rome">
  </a>
   
  <figcaption>
    Travel to gorgeous Rome and tour the colosseum
    </figcaption>

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

<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Picture of the Swiss Alps">
  </a>

  <figcaption>
    Travel to sweeden and climb the swiss alps
   </figcaption>

    </figure>

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

  <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Picture of the Ocean">
  </a>
   
  <figcaption>
  Take a relaxing criuse in crystal clear oceans
    </figcaption>

    </figure>


    </body>


  </html>

Hi.

Can you please post the url of the step you are on.

For future reference:

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

please use an html validator: Ready to check - Nu Html Checker there is invalid syntax in your code