Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I cannot get past step 32. I am not sure what’s wrong? All my href attributes have a target=_blank.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="Booking travel made easy">
  </head>
  <body>
    <h1>Discover Paris!</h1>
    <p>Come to Paris to explore beautiful sights, eat delicious food, and encounter Parisian culture.</p>
    <h2>Packages</h2>
    <p>At Wanderlust Travel, we over a variety of packages to suit your needs. Whether you want to go all in or take it easy, we have you covered.</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="Champs-Elysees at sunset">
    </a>
      <figcaption>Champs-Elysees</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Eiffel Tower">
      </a>
      <figcaption>The Eiffel Tower</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Louvre at sunset">
      </a>
      <figcaption>The Louvre</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/138.0.0.0 Safari/537.36 Edg/138.0.0.0

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

Welcome to the forum @pinkxy

Check Champs-Elysees and the Eiffel Tower.

Happy coding

1 Like

Hey! you just missed the “_” (underscore) in the target value. fixing the links in the list for Champs-Elysees and The Eiffel Tower will complete step 32.

:smile:

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.