Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hi, everyone.
This is my code, I try to figure out what I may be missing but I can’t see to point out what the issue is. Please, let me know what could be the problem, thank you in advance.

for questions #
31. 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.
Failed:32. Each a element should have a target attribute with the value of _blank. Don’t forget the links in the list items.

Your code so far

 <!DOCTYPE html>
<html lang="en">
 <head>
  <meta charset="utf-8">
  <meta name="description" content="Your travel agency's amazing destinations and services.">
  <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Added meta element -->
   <title> Travel Agency Page </title>
  </head> 
  <body>
    <main>
   <h1>travel Oportunities</h1>
   <p>Explore the world with our curated travel options, designed for every type of adventurer.</p>
   <h2>Packages</h2>
   <p>>We offer a variety of packages to suit your needs, whether you're traveling solo or with a group.</p>
   <ul>
    <li><a href="#group">Group Travels</a></li>
    <li><a href="#private">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 in Rome"></a>
     <figcaption>The Colosseum in Rome</figcaption>
</figure>

<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="The Alps mountain range"></a>
  <figcaption>The Alps mountain range</figcaption>
</figure>

<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="A calm sea at sunset"></a>
  <figcaption>A calm sea at sunset</figcaption>
</figure>

</main>
</body>
</html>  

Your browser information:

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

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

You forgot the list item links. :slight_smile: