Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

  1. Your second p element should introduce briefly the various packages.
  2. You should have an unordered list element below your second p element.

I don’t understand what’s wrong with those two, I did exactly what I was asked to do

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="description" content="Travel agency">
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Discover Ivory Coast</h1>
    <p>Nature, cuisine, art, folklore, and more. Select from our extensive range of guided tours and excursions to have a memorable time traveling in Italy.
    <p>
    <h2>Packages</h2>
    <p>We provide a wide variety of vacation options to meet the demands of each and every one of our customers.</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/sea.jpg" alt="A picture of the sea">
      </a>
      <figcaption>Jacqueville and the sea</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="A picture of the colosseo">
      </a>
      <figcaption>Yamoussoukro</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="A picture of the alps">
      </a>
      <figcaption>Korogho</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 OPR/119.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

do you think this is the correct syntax?

1 Like

I just saw it, missed the closing tag, thanks

1 Like