Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

My build a travel agency page code keeps telling me I’ve failed steps 16 and 17; however, I’ve checked, and I did exactly what those steps require. I’ve also tried resetting the lesson, but nothing works. Please help?

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8"/>
  <meta name="description" content="A page describing how we help individuals with their travel needs"/>
  <title>T.K Travel Agency</title>
</head>
<body>
  <h1>Travel destinations are: UK, US, Canada, and All of Europe</h1>
  <p>
    Examples of travel opportunities include:
    <ol>
      <li>Flight Attendant</li>
      <li>Travel nurse</li>
      <li>Translator</li>
      <li>Tour guide, e.t.c</li>
    </ol>
  </p>
  <h2>Packages</h2>
  <p>The travel packages our agency offers include:Group Travels and Private Tours.Both packages each include their own unique features, so make sure to be sure of the one you want to choose. Group Travels is for people who want to book their travels as a group e.g a family, a football team. Private Tours is for people who are travelling alone and not with others.</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="The Atlantic Ocean"/></a>
    <figcaption>A good place to work for tour guides looking to work on cruise ships</figcaption>
  </figure>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="An example of a site in Italy"/></a>
    <figcaption>A monument in Italy</figcaption>
  </figure>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Mountains in Northern Canada"/></a>
    <figcaption>A beautiful landscape of mountains in Northern Canada</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/140.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. Try removing the ol and li elements in your first p element as the stories don’t ask for this. Just have text

It worked. Thank you so much.

1 Like