Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

The checks #16 & 17 are marked as wrong. I already tried to search for an answers but didn’t find one. I also rewrote the p but nothing changed

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="This is  the Travel Agency Page">
    <meta name="author" content="Travel Agency">
  </meta>
  </head>
  <body>
    <h1>These are our Travel Destinations</h1>
    <p>With us you can travel confortably<p>
    <h2>Packages</h2>
    <p>Italy, one of the most special countries in Europe with its rich historical values, natural beauties, museums, art and cultural heritage, is one of the most popular holiday destinations for holiday enthusiasts every year.</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="Coloseum"></a><figcaption>Coloseum</figcaption></figure>
    <figure><a href=" https://www.freecodecamp.org/learn" target="_blank"><img  src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Mountains"></a><figcaption>Mountains</figcaption></figure>
      <figure><a href=" https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Ocean"></a><figcaption>Ocean</figcaption></figure>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:147.0) Gecko/20100101 Firefox/147.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Is this p element closed correctly?

meta elements are void elements that do not take a closing tag.

Thank you for your help