Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I have tried everything and rechecked. The Problems are :

  1. You should have two items in your unordered list.
  2. Both your list items should contain an anchor element.
  3. Each a element should have an href attribute with the value of https://www.freecodecamp.org/learn. Don’t forget the links in the list items.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="The Website for The Travel Agency">
  </head>
  <body>

    <h1>Rome</h1>
    <p>Tourism at Affordable and Reasonable Pricing</p>

    <h2>Packages</h2>
    <p>Choose from our best travel options below.</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>
    <p>Tourism for Everyone and Every Type of Person</p>

    <ul>
      <li>
        <figure>
          <a href="https://www.freecodecamp.org/learn" target="_blank">
            <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Colosseum in Rome">
          </a>
          <figcaption>Colosseum Tour</figcaption>
        </figure>
      </li>
      <li>
        <figure>
          <a href="https://www.freecodecamp.org/learn" target="_blank">
            <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Alps Mountains">
          </a>
          <figcaption>Alps Adventure</figcaption>
        </figure>
      </li>
      <li>
        <figure>
          <a href="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" target="_blank">
            <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Sea Coast">
          </a>
          <figcaption>Sea Escape</figcaption>
        </figure>
      </li>
    </ul>

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 OPR/127.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

are you sure you are using the requested href everywhere?

`you need to look at all your href reference as they should all be the same but one is not thanks, double check all your code thanks. Happy Coding.