Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I am still getting 26/28 wrong, the figure elements have figcaptions and the anchor elements have images, what am I missing?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="flown out the cheap way!">
    </head>
    <body>
      <h1>SEA TRAVELS
        </h1>
        <p>
          Take flight with us to the most exotic place in the Southeast Asian region!</p>
          <h2>
            Packages</h2>
            <p>We offter exclusive, inclusive packages for travel to Philippines, Thailand and Bali. From honeymoon packages, to adventure packages, to live like a local; we have a package that suits you desired travel experience.</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</li>
            </ul><h2>Top Itineraries</h2>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://d3hne3c382ip58.cloudfront.net/files/uploads/bookmundi/resized/cms/12-best-countries-to-visit-on-a-budget-philippines-1532518583-735X412.jpg" alt="Philippines"</a>
  <figcaption>Philippines</figcaption>
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://www.vmcdn.ca/f/files/via/images/tourism/thailand-travel-advisory-vancouver-flights-january-2025.jpg;w=960" alt="Thailand"</a>
  <figcaption>Thailand</figcaption>
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://media.digitalnomads.world/wp-content/uploads/2020/12/20120709/Ulun-Danu-Beratan-Temple.jpg" alt="Bali"</a>
  <figcaption>Bali</figcaption>
</figure>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:139.0) Gecko/20100101 Firefox/139.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum @k00kiemonstah

The img elements are missing a closing angular bracket.

Make sure all the anchor elements have a closing tag.

Happy coding

1 Like