Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hi everyone,
I have several issues in my code:
18. Both your list items should contain an anchor element.
20. The anchor element of your second list item should wrap the text Private Tours.
21. You should have an h2 element after your unordered list.
25. Each figure element should contain a figcaption element as its second child.
27. Each of the [a] elements that are children of your figure elements should contain an image.

Also, why my second h2 is clickable?
Please help, thanks in advance :slight_smile:

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Travel Agency Page</title>
  <meta charset="UTF-8">
</head>
<body>
  <main>
   <h1>Discover Indonesia</h1>
   <p>Art, folklore, food, nature, and more. Choose among our wide selection of guided tours and excursions, and live an unforgettable experience exploring Indonesia.</p>
   <h2>Packages</h2>
   <p>We offer an extensive range of holiday solutions to accommodate the needs of all our clients. From daily excursions in the most beautiful cities, to thorough tours of hidden villages and medieval towns to discover Italy's lesser-known sides.</p>
   <ul>
     <li><a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels</li>
     <li><a href="https://www.freecodecamp.org/learn" target="_blank">Private Tours</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="Colloseo"></a>
   <figcaption>Colloseo</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>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>Sea</figcaption>
  </figure>
 </main>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

</a> closing anchor is missing

1 Like

thank you so much for helping. it work now