Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I need help with steps 31 and 32 I have been trying to get them right for hours at this point , here are the instructions

  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.

  2. 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 name="description" content="website"></meta>
   <meta charset="UTF-8"></meta>
   <title>Navarro Airlines</title>
 </head>
 <body>
   <h1>Dubai</h1>
   <p>Guided Tours</p>
   <h2>Packages</h2>
   <p>Premium packages</p>
  <ul> 
    <li>Hotel<a>Group Travels</a></li> 
    <li>Transportation<a>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="photo"></img>
      </a>
      <figcaption>Excursions</figcaption>
   </figure>
   <figure>
     <a href="https://www.freecodecamp.org/learn" target="_blank">
       <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="photo"></img>
     </a>
     <figcaption>Meals</figcaption>  
   </figure>
   <figure>
     <a href="https://www.freecodecamp.org/learn" target="_blank">
       <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="photo"></img>
     </a>  
     <figcaption>Tours</figcaption>
   </figure> 
 </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi and welcome to the community!
As it mentions in the errors, don’t forget the list items.
You have two anchor elements there that don’t have href and target attributes.
Good luck!