Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

it tells me that my step 29 is wrong…am i supposed to use that address in the image tags as well?

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset='utf-8'>
  <title>Travel Agency Page</title>
</head>
<body>
  <h1>Visit Amsterdam</h1>
  <p>Step into the enchanting embrace of Amsterdam, where cobbled streets wind alongside serene canals, each bridge offering a picturesque glimpse into the city's rich history. With its vibrant art scene, iconic museums like the Van Gogh and Anne Frank House, and a laid-back, bohemian vibe, Amsterdam promises a captivating getaway, whether you're strolling through the flower markets, exploring the charming Jordaan district, or simply soaking up the atmosphere in a cozy canal-side café.</p>

  <h2>Packages</h2>
  <p>Discover the charm of Amsterdam with our diverse vacation packages! Whether you're seeking a romantic getaway, a cultural adventure, a budget-friendly trip, or a luxurious experience, we have something to suit every traveler. Explore our canal cruises, visit world-renowned museums, indulge in local delicacies, and immerse yourself in the vibrant nightlife. Book your dream Amsterdam vacation today!</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://dynamic-media-cdn.tripadvisor.com/media/photo-o/26/df/65/43/caption.jpg?w=1200&h=-1&s=1" target="_blank">
      <img src="https://dynamic-media-cdn.tripadvisor.com/media/photo-o/26/df/65/43/caption.jpg?w=1200&h=-1&s=1" alt="image of Amsterdam Canals">
    </a>
    <figcaption>A scenic view of Amsterdam's canals.</figcaption>
  </figure>

  <figure>
    <a href="https://top20.amsterdam/images/amsterdam-highlights.jpg" target="_blank">
      <img src="https://top20.amsterdam/images/amsterdam-highlights.jpg" alt="Image of the Rijksmuseum in Amsterdam">
    </a>
    <figcaption>Image of the Rijksmuseum in Amsterdam</figcaption>
  </figure>

  <figure>
    <a href="https://www.icmets.org/wp-content/uploads/2020/11/attraction-825x340.jpeg" target="_blank">
      <img src="https://www.icmets.org/wp-content/uploads/2020/11/attraction-825x340.jpeg" alt="beautiful view of a windmill among a lot of colorful flowers">
    </a>
    <figcaption>windmill off in the distance of rows of different colored flowers align the ground</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/131.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi there!

The test says: Each a element should have an href attribute with the value of https://www.freecodecamp.org/learn. Your anchor elements for the img element didn’t have that href value.

So I do have to have them for the image elements as well thank you so much

1 Like

Hi @RylieCloud

All the anchor elements need to point to https://www.freecodecamp.org/learn

Happy coding