Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hey guys, how are you? Can you give me a hand? I’m on my seventh attempt at the Travel Agency Page exercise and I can’t figure out where my mistake is to finish it. Thanks.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="Explore the world with ease. We offer personalized travel planning, from curated itineraries to all-inclusive packages. Our expert team handles every detail, so you can focus on making memories. Start your adventure today.">
  </head>

  <body>
    <h1>Travel destinations</h1>
    <p>Art, folklore, food, nature, and more. Choose among our wide selection of guided tours and excursions, and live an unforgettable experience exploring the world.</p>
    <h2>Packages</h2>
      <p>The most variable packages for enjoy!</p>
      <ul>
        <li><a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels</li></a>
        <li><a href="http://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://t3.ftcdn.net/jpg/03/06/22/80/360_F_306228011_2jldV5x45r0Ou3IiFJNMj3PDJPXKfgEX.jpg" alt="A plane">
        </a>
        <figcaption>Rome and Center Italy</figcaption>
      </figure>
      <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://media.istockphoto.com/id/1256696490/photo/used-concrete-asphalt-airport-empty-runway-with-many-braking-marks-markings-for-landings-and.jpg?s=612x612&w=0&k=20&c=zBIW1UQmmBM3zpmzXbQXX-8gY9x43G7JrABx87oyn7U=" alt="Just a Runway">
        </a>
        <figcaption>Rome and Center Italy</figcaption> 
      </figure>
      <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://images.birdfact.com/production/how-do-birds-fly.jpg?w=1792&h=1024&q=80&fm=webp&fit=clip&dm=1657019948&s=79d320792077e9e246f3cceacd0f1876" alt="A bird soaring high">
        <figcaption>Rome and Center Italy</figcaption>
        </a>
      </figure>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) 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 there,

I put your code into an online html validator and it found some errors (like missing closing tags).
You can see a list yourself by pasting your code in this validator and reading the list of errors

If you fix everything, this may help you out with the tests.

2 Likes

Thank for the tip! :grinning_face_with_smiling_eyes:

2 Likes