Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hi! I cannot see why I am failing to satisfy tests 26, 28, 31, and 32. Everything looks correct on the preview and my code matches others that I have checked. Thanks in advance for any help!

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="The best places to travel!">
  </head>
<body>
  <h1>My Favorite Places to Travel!</h1>
  <p>I recommend these travel destinations</p>
  <h2>Packages</h2>
  <p>Cool Travel Packages</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 href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="colosseo"><a/>
<figcaption>The Roman Colosseom</figcaption>   
  </figure>

  <figure>
     <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="alps"></a> 
<figcaption>The Swiss Alps</figcaption>  
  </figure>

 <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="sea"></a>
<figcaption>The Mediteranian Sea</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/136.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum @twilde35

Your forward slash is not in the correct spot for one of the anchor closing tags.

Happy coding

Ah! I can’t believe I missed that when I was checking it myself. Thank you so much for the help!

1 Like