Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hi!
The tests shows 16 and 17 as failed but the second p and ul are where they should be so I’m not sure how I should fix the problem. Thank you in advance!

Your code so far

<!DOCTYPE html>
<html lang="en">
    <head>
      <meta charset="utf-8"/>
      <meta title="Travel Agency Page"/>
      <title>Bohemian Travel Guide</title>
      <meta name="description" content="discover the best travel plans and best places to visit when coming to Italy"/>
    </head>
    <body>
      <h1>Visit the wonderful country of Italy!</h1>
        <p>The country of Italy has some of the most breathtaking places to visit. These include but are not limited to the colloseum, the alps in the north and the sea around a large part of the country. Use our travel agency for the best prices now!<p>
      <h2>Packages</h2>
        <p>These are the packages:</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="Image shows the colloseum in Rome"></a>
        <figcaption>Rome and its citycentre</figcaption>
      </figure>
      <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Image shows the alps in the north of Italy"></a>
        <figcaption>The nature of Italy and its national parks</figcaption>
      </figure>
      <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Image shows the seas of Italy"></a>
        <figcaption>Southern Italy and its warm beaches</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/143.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

  1. Your second p element should introduce briefly the various packages.

Sometimes a problem is caused when a previous element is not closed properly.

Double check your previous elements.

Thank you! I missed closing the previous element p.

1 Like