Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

for some reason it wont check of 32. i dont know if its a spelling error or if i put it in the right place

Your code so far

<!DOCTYPE html>
<html lang="en">
<Head>
  <meta charset="utf-8">
  <title>Travel Agency Page</title>
  <meta tag="come here to book flights to your  dreams"
  <meta name="description" content="very good flight agent">
</head>
<body>
<section>
  <h1>here is a selection of our flights</h1>
  <p>we have a wide range of flights to different locations like the beautiful coasts of florida or the towering skyscrapers of new york or a flight to japan for a trip to see universal studios</p>
  <h2>Packages</h2>
  <p>for our packages we have the group to bring along your friends for a low price of 10,000,we also have the private tours package bring yourself on a small trip the package includes all your needs for a nice vacation to get away from work.</p>
  <ul>
   <li><a href="https://www.freecodecamp.org/learn">Group Travels</a>
   <li><a href="https://www.freecodecamp.org/learn">Private Tours</a>    
  </ul>      
  <h2>Top Itineraries</h2>
</section>

 <figure>
 <a href="https://www.freecodecamp.org/learn"target="_blank"> 
 <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="cool pick of collosuem"> 
</a>
<figcaption>cool collsuem</figcaption>
 </figure>

 <figure>
<a href="https://www.freecodecamp.org/learn"target="_blank">
 <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="cool picture of mountains">
</a>
<figcaption>cool picture of mountains</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
 <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="pciture of the sea"> 
</a>
<figcaption>ocean picture</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/138.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

test 32 says:
2. Each a element should have a target attribute with the value of _blank. Don't forget the links in the list items

So when you check all the anchor elements in your code, do they all have target attributes defined as requested?

oh i get it now thank you

1 Like