Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Test 31 fails (having an href for each anchor element).
I checked and i have 5 anchor elements. 2 Packages and the three figures (itineraries). All of them have the href leading to the /learn url but the test still fails

Your code so far


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" title="Travel Agency Page">
<meta name="description"description="Short Description for my cool website" content="Welcome to my awesome website about travel locations!">
<title>Travel Agency Page</title>
</head>
<body>
<h1>My cool travel destinations</h1>
<p>These are the coolest destinations you don't want to miss out on</p>
<h2>Packages</h2>
<p>Various Packages (Introduction)</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="Colosseum">
  </a>
    <figcaption>
      Colosseum
    </figcaption>
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Alps">
  </a>
    <figcaption>
      Alps
    </figcaption>
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Sea">
  </a>
    <figcaption>
      Sea
    </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/134.0.0.0 Safari/537.36 OPR/119.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

you are using two different values, make sure to always use the one requested

Yeah i noticed it too after searching for a while. Thanks though!