Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

hi i’m new here,
i got an error in the 18. You should have two items in your unordered list.
and the 19. Both your list items should contain an anchor element
Anyone can help , thanks.

Your code so far

<!DOCTYPE html>
<html>
  <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title>Travel Agency Page</title>
      <meta name="description" content="Travel Agency is a revolutionnary way to book and reserved tickets for your future destination.We make your travelling needs easier for you."> 
    </head>
    <body>
    <h1>Our destinations</h1>
    <p>We propose a large set of travelling opportunities for all budget , with a guarantee of quality and security for all of your dream destination:</p>
    <ul>
      <li>Tahiti/France</li>
      <li>Los Angeles/Hawaii</li>
      <li>Japan/Los Angeles</li>
    </ul>
    <h2>Packages</h2>
    <p>We also propose <strong>Packages</strong> for various types of destination and various needs, that we sure will fit your expectations.</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="The Colosseum"></a>
      <figcaption>The Colosseum</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="Blue Ocean"></a>
      <figcaption>Blue Ocean</figcaption>
    </figure>
    </body>
    </html>

Your browser information:

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

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi,
Welcome to the forum!
You have two ul elements, and one of them has three list items. The system is accepting that only, which causes the error. The best thing to do is use one ul element in this project.
I hope this helps. Good luck!

thank you man , i appreciate it

1 Like