Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I am failing 18&19
I have tried different formatting, I have redone the entire test, I have compared to other forum posts. I am VERY confused.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="description" content="The best place to find your next travel destination and never stop adventuring">
    <title>Travel Agency Page</title>
  </head>
  <body>
    <main>
      <h1>Travel Destinations</h1>
      <p>Travel Opportunities:</p>
      <ul>
        <li>Cancun</li>
        <li>Barbados</li>
        <li>Third Circle of Hell</li>
      </ul>

      <h2>Packages</h2>
      <p>We offer the following travel 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>
      <ol>
        <li>
          <figure>
            <a href="https://www.freecodecamp.org/learn" target="_blank">
              <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Roman Colosseum">
            </a>
            <figcaption>See the historic Roman Colosseum</figcaption>
          </figure>
        </li>
        <li>
          <figure>
            <a href="https://www.freecodecamp.org/learn" target="_blank">
              <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Swiss Alps">
            </a>
            <figcaption>Bask in the Glory of the Swiss Alps</figcaption>
          </figure>
        </li>
        <li>
          <figure>
            <a href="https://www.freecodecamp.org/learn" target="_blank">
              <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Ocean">
            </a>
            <figcaption>Great Ocean Adventures Await</figcaption>
          </figure>
        </li>
      </ol>
    </main>
  </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

I see more than one ul element, so there are more than two ul > li elements

1 Like

Thank you very much, that was a lot of time I spent on a misunderstanding.