Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

  1. Each of the a elements that are children of your figure elements should contain an image.

I can’t seem to spot my mistake here.

Your code so far

<!DOCTYPE html>
<html lang="en">

  <head>
    <meta charset="UTF-8">
    <meta property="og:title" content="Going To Hell Travel Agency">
    <meta name="Description" content="Madness!">
    <title>Travel Agency Page</title>
  </head>

<body>
  <h1>Destined for Hell!</h1>
  <p>You could go anywhere! But go to hell!</p>
  <h2>Packages</h2>
  <p>Have you seen the world? Hell's looking pretty nice isn't it?! Packages include lava baths and toasted marshmellows.</p>
  <ul>
    <li><a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels</a>
      <li><a href="https://www.freecodecamp.org/learn" target="_blank">Private Tours</a>
  </ul>
<h2>Top Itineraries</h2>
<figure>
   <a href="https://www.freecodecamp.org/learn" target="_blank">
   <figcaption>Likely a place many people died!
     <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="arena">
     </a>
</figure>
<figure>
   <a href="https://www.freecodecamp.org/learn" target="_blank">
   <figcaption>These are definitely how the volcanoes look!
     <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Mountain">
     </a>
</figure>
<figure>
   <a href="https://www.freecodecamp.org/learn" target="_blank">
   <figcaption>Explore Made Up Waters in Hell!
     <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Ocean">
     </a>
</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/140.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-travel-agency-page/build-a-travel-agency-page

Welcome to the forum @atlloyd28

For every opening tag, make sure there is a corresponding closing tag.

Why does the figcaption text appear as a link.

Happy coding

I found that the issue was that the a needed to end before the figcaption . I will also modify that more for the future, Thanks!~