Build a Travel Agency Page - Step 31

PLS I DONT KNOW WHATS GOING ON :woman_shrugging:

This is what the console say:

  1. 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.
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8"/>
    <meta name="description" 
      content=
      "Art, folklore, food, nature,   and more. Choose among our wide       selection of guided tours and excursions, and live an unforgettable experience exploring Italy."
      />
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Discover Italy</h1>
    <p>
      Art, folklore, food, nature, and more. Choose among our wide selection 
      of guided tours and excursions, and live an unforgettable experience 
      exploring Italy.
    </p>
    <h2>Packages</h2>
    <p>
      We offer an extensive range of holiday solutions to accommodate the 
      needs of all our clients. From daily excursions in the most beautiful 
      cities, to thorough tours of hidden villages and medieval towns to 
      discover Italy's lesser-known sides.
    </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="Rome and Center Italy"/>
      </a>
    <figcaption>
      Rome and Center Italy
    </figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" 
          alt="Nature and National Parks"/>
      </a>
    <figcaption>
      Nature and National Parks
    </figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" 
          alt="South Italy and Islands"/>
      </a>
    <figcaption>
      South Italy and Islands
    </figcaption>
    </figure>
  </body>
</html>

What should I do? Thanks!

Hi. You have a typo in your first href value - you have a space you need to close for it to pass.

1 Like

Hey, thanks for stopping by! Now i can go to the next challenge.

1 Like