Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I’m having trouble for the tests 5, 26, 27 and 28. I don’t understand why it marked me as wrong when the code works perfectly fine. Any ideas?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta  content="The best travel agency!"
           name="description">
    <meta charset="utf-8">
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Travel Agency</h1>
    <p>Experience the great Earth!</p>
    <h2>Packages</h2>
    <p>We have many packages for you to experience.</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="colosseo">
      <figcation>Colosseo</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="alps">
      <figcation>Alps</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="sea">
      <figcation>Sea</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/138.0.0.0 Safari/537.36 OPR/122.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

I would suggest to not start with the notion that your code is perfect

try not going to a new line inside the meta element

then, check your figure elements, are you sure that figcaption is the second child?