Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

i cant figure out how to get past step 31??? I have rewrote it twice and still cant figure out why my a elements aren’t working?

Your code so far

<!DOCTYPE html>
<html lang="en">
 <head>
   <meta charset="utf-8">
   <title> Travel Agency Page </title>
   <meta name="description" content="Best travel in the world">
   </head> 
   <body>
     <h1> Florida </h1>
     <p> From Orlando to the keys </p>
     <h2> Packages </h2>
     <p> Best Places </p>
     <ul>
       <li> 
         <a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels
         </a>
         </li>
       <li> 
         <a href="https://freecodecamp.org/learn" target="_blank">Private Tours
         </a>
         </li>
       </ul>
       <h2> Top Itineraries </h2>
      <figure>
        <a href="https://freecodecamp.org/learn"target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="colosseo">
        </a>
        <figcaption>Colosseo</figcaption>
        </figure>
        <figure>
          <a href="https://freecodecamp.org/learn"target="_blank">
          <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="alps">
          </a>
          <figcaption> Alps </figcaption>
          </figure>
          <figure>
            <a href="https://freecodecamp.org/learn"target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="sea"></a>
             <figcaption>sea</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/134.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Each a element should have an href attribute with the value of https://www.freecodecamp.org/learn .

Are you sure you are using the correct URL for all the links?

Compare the two:

       <li> 
         <a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels
         </a>
         </li>
       <li> 
         <a href="https://freecodecamp.org/learn" target="_blank">Private Tours
         </a>
         </li>

:face_with_open_eyes_and_hand_over_mouth: Thank you so much! I can’t believe i missed that.