Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hello everyone, I need help, what am I doing wrong?
The questions in question that he says are wrong are as follows:
4. You should have two meta elements within your head element.
5. One meta element should have a name attribute with value of description and a non-empty content attribute.

Your code so far

<!DOCTYPE html>
<html lang="en">
   <head>
     <meta charset="UTF-8"/>
     <title>Travel Agency Page</title>
   </head>
  <body>
    <h1>Travel Destination</h1>
      <p>take advantage of our opportunities!</p>
    <h2>Packages</h2>
     <p>we have various packages to fit your needs.</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="Il Colosseo"></a><figcaption><em>Il colosseo</em></figcaption></figure>
    <figure><a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg"alt="Le montagne"></a><figcaption><em>Le Montagne</em></figcaption></figure>
    <figure><a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg"alt="il mare"></a><figcaption><em>Il mare</em></figcaption></figure>
    <figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
  <img src="https://www.freecodecamp.org/learn" alt="slogan"></a>
  <figcaption>learn on freeCodeCamp</figcaption>
  </figure>
  </body>
</html> 

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Where is your second meta element with the required attribute?