Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

My code I think works but for some reason it isn’t recognizing my figcaption as a second child element of the figure. The img elements and href elements haven’t been recognized as well. Please help

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Travel Agency Page</title>
<meta name="description" content="This is a travel agency page."></head>
<body>
  <h1>Destinations</h1>
  <p>There are so many place to go in the world. So many cultures to explore and people to meet. From Japan, Hawaii, Brazil, or Italy we can help with all destinations and how to travel to these places in the safest and and most satisfactory manner.</p> 
  <h2>Packages</h2>
 <p>We have 3 main packages for all of our destinations that will determine the amount of participation you would like from our organization from planning events and tours to booking your flight, ground transportation and stays.</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="colosseum"></a>

<figcaption>Rome Colosseo</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>Italian 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>Adriatic Sea</figcaption>

</figure>
    
    </body>
    </html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

the last one is the one that is giving an error, look at this carefully

1 Like