Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Help it says I have not completed step 31. However I have attached my anchored h ref attribute to a value for the link given. What am I missing here.

Your code so far

<!DOCTYPE html>
<html lang="en"><head>
  <meta name="description" content="Travel like an Eagle soaring through the skies">
  <meta charset="utf-8">
  <title>Eagles Travel Agency</title>
</head><body></body></html>
  <h1>Eagles Travel Agency</h1>
  <p> With E.T.A look no further when planning your next get-away, staycation, or luxurious adventure.</p>
  <h2>Packages</h2>
  <p>Packages include group travel or if you feel like traveling solo we got that too</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>        
  <ul>       
  <li>
   <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
     <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Colosseo in Rome" href="https://www.freecodecamp.org/learn" target="_blank"></img>
    </a>
    <figcaption>Your number <bold>ONE</bold> destinastion in <em>Rome,Italy</em></figcaption>
  </figure>
  </li>
  <li>
    <figure>
     <a href="https://freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Sails at Sea" href="https://freecodecamp.org/learn" target="_blank"></img>
     </a>
      <figcaption>Set <em>sail!!</em></figcaption>
    </figure>
  </li>
  <li>
    <figure>
      <a href="https://freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Image of Alps" href="https://freecodecamp.org/learn" target="_blank"></img>
      </a>
        <figcaption>Visit the <em>Alps!!</em></figcaption>
    </figure>
  </ul>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum @cobournerayshaun

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.

Are you sure that is the value you used in your href attributes?

Also:

  • img element do not have closing tags
  • they should not contain href or target attributes

Happy coding