Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hi, I seem to have a problem with 2,3,31 and 32, but am not sure what the problem is. I feel like something is out of place and/or missing. Could use some insight on this. Thank you.

Your code so far

<!DOCTYPE html>
 <hmtl lang="en">
  <head>
    <meta charset="utf-8"> 
    <title>Travel Agency Page</title>
    <meta name="description"
          content="We are a travel agency company that helps people plan trips abroad, including accomodations and airfare.">
  </head>
  <body>
  <h1>Discover Europe</h1>
   <p>Plan a memorable trip with friends and family, or a solo trip to a beloved destination in Europe. Create an itinerary with food, museum visits, experiences and more for places like Paris, London and Madrid.
    </p>
  <h2>Packages</h2>
    <p>We have a varied selection of travel packages that allow you to choose how to spend your trip. Select from boat tours, wine tastings, museum visits and more, either in groups or solo.
    </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>
   <figure> 
     <a> <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="A photo of the Colloseum in Rome." href="https://www.freecodecamp.org/learn" target="_blank">
     </a>
     <figcaption>The Colloseum in Rome</figcaption>
   </figure>
   <figure> 
     <a><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="A photo of mountains." href="https://www.freecodecamp.org/learn" target="_blank">
     </a>
     <figcaption>A photo of mountains</figcaption>
   </figure>
   <figure> 
     <a> <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="A photo of a boat in the ocean." href="https://www.freecodecamp.org/learn" target="_blank">
     </a>
     <figcaption>A photo of a boat in the ocean
     </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/145.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Look closely at your opening tag. Is that a valid element?

What element here should contain the href and target attributes?

1 Like

Ah thank you dhess! I understand now. Have to read things more closely.