Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I have been told that this is the final test to pass the travel agency page:

“Each a element should have a target attribute with the value of _blank. Don’t forget the links in the list items.”

But the issue for me is that I have already done that however the system refuses to accept it!

Does anyone here know what I may have done wrong and how I can pass this stage?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="From Tokyo to Kyoto, discover ancient temples, onsen hot springs, cherry blossoms and more in our Japan travel guide. Find top attractions and expert tips.">

  </head>
  <body>
    <h1>Explore Japan</h1>
    <p>Japan is truly timeless, a place where ancient traditions fuse with modern life, as if it were the most natural thing in the world.</p>
    
    <h2>Packages</h2>
    <p>Pick one of our ready-to-book trips or fully customize your own with help from our local experts.</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"><img alt="Mt Fuji and Cherry Blossom" src="https://lp-cms-production.imgix.net/2019-06/d150c8c399f2d41ecf8864b69ddc7a35-mt-fuji.jpg?auto=format,compress&q=72&w=1095&h=821&fit=crop&crop=faces,edges" width="400" target="_blank"></a>
      <figcaption>Mount Fuji</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn"><img alt="Tokyo Imperial Palace" src="https://lp-cms-production.imgix.net/2024-02/shutterstockRF138905807.jpg?auto=format,compress&q=72&w=1095&h=821&fit=crop&crop=faces,edges" width="400" target="_blank"></a>
      <figcaption>Imperial Palace</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn"><img alt="Vendors prepare chestnuts to sell at Nishiki Market in Kyoto, Japan on 22 November 2016." src="https://lp-cms-production.imgix.net/2024-01/shutterstockRF1011566827.jpg?auto=format,compress&q=72&w=1095&h=821&fit=crop&crop=faces,edges" width="400" target="_blank"></a><figcaption>Nishiki Market</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/146.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Your target attribute is placed in img element and should be in a element.

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