Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I cant get pass this. help please.

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

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta name="description" content="A travel agency page to learn more about best destinations to travel" >
    <meta charset="UTF-8">
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Destinations includes Georgia, Oman, Rwanda, Uzberkistan and many Locations across the world</h1>

    <p>Travel opportunities:
      <ol>
        <li>Hidden Gems - Lesser-known places that avoid tourist crowds</li>
        <li>Digital Detox Destinations - Remote locations with limited connectivity</li>
        <li>Film & TV Locations - Visit iconic movie and show filming spots</li>
        <li>Culinary Journeys - Food-focused trips to authentic local experiences</li>
        <li>Sustainable Escapes - Eco-friendly destinations with carbon-neutral travel options</li>
        <li>Slow Travel - Extended stays in fewer locations for deeper cultural immersion
      </ol>
    </p>

    <h2>Packages</h2>
    <p>Brief introduction:
      <ol>
        <li><b>Mystery Trips</b> - Travelers only know the climate and activity level until departure.</li>
        <li><b>Skill-Building Vacations</b> - Learn photography, cooking, languages, or crafts while traveling.</li>
        <li><b>Multi-Generational Adventures</b> - Trips designed for families with varying age groups.</li>
        <li><b>Workation Packages</b> - Remote work-friendly destinations with co-working spaces.</li>
        <li><b>Volunteer Vacations</b> - Meaningful travel combined with community service.</li>
        <li><b>Wellness Retreats</b> - Mental health focused trips with meditation, yoga, and nature therapy.</li>
      </ol>
    </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="Photo of a ancient building" ></a>
      <figcaption>An ancient city of Italy</figcation>
    </figure>
    <figure><a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="a beautiful and isolated place" ></a>
      <figcaption>An ancient volcanic site</figcation>
    </figure>
        <figure><a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="a ship of sea" ></a>
      <figcaption>The blue sea</figcation>
    </figure>

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-travel-agency-page/build-a-travel-agency-page

Hi. Stories 6 and 8 and expecting a p element just with text in. Remove the lists and just have text.

I tried different content in the p element but it didnt work. even left it empty but same

Please show your updated code

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta name="description" content="A travel agency page to learn more about best destinations to travel" >
    <meta charset="UTF-8">
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Destinations includes Georgia, Oman, Rwanda, Uzberkistan and many Locations across the world</h1>

    <p>Travel opportunities:
      <ol>
        <li>Hidden Gems - Lesser-known places that avoid tourist crowds</li>
        <li>Digital Detox Destinations - Remote locations with limited connectivity</li>
        <li>Film & TV Locations - Visit iconic movie and show filming spots</li>
        <li>Culinary Journeys - Food-focused trips to authentic local experiences</li>
        <li>Sustainable Escapes - Eco-friendly destinations with carbon-neutral travel options</li>
        <li>Slow Travel - Extended stays in fewer locations for deeper cultural immersion
      </ol>
    </p>

    <h2>Packages</h2>
    <p>You can have the group travel package for $2000 and the private tour package for $4000</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="Photo of a ancient building" ></a>
      <figcaption>An ancient city of Italy</figcation>
    </figure>
    <figure><a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="a beautiful and isolated place" ></a>
      <figcaption>An ancient volcanic site</figcation>
    </figure>
        <figure><a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="a ship of sea" ></a>
      <figcaption>The blue sea</figcation>
    </figure>

  </body>
</html>

It doesn’t look like you removed the lists from the p elements like suggested?

The first p element passed. Its the second p element that is giving the problem. Let me try that and paste the code here.

Thank you, it passed.