Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Please help check my code, I can’t pass test 31 with the travel agency page.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title> Travel Agency Page </title>
    <meta charset="UTF-8">
    <meta name="description" content="Book your next vacation on a budget">
    </head>
    <body>
      <h1> Travel destinations </h1>
      <p> Travel opportunities include domestic and international </p>
      <h2> Packages </h2>
      <p> Various packages include:</p>
        <ul>
          <li> <a href=https://www.freecodecamp.org target="_blank">Group Travels</a> </li>
          <li> <a href=https://www.freecodecamp.org 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>Collosseum </figcaption>
  </figure>
<figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt ="Swiss Alps"></a>
  <figcaption> Swiss 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> Ocean Cruise </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/137.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum @lauren.ewrighty

  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.

Check the values of the attributes.
Also, they need to go inside quote marks.

Happy coding