Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I’m having trouble with figcaption. I did exactly as it says but the result shows that it’s wrong.
The code is not wrong at all. Is it possible that it is an error?
Screenshot (99)

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
<meta name="description" content="Agenție de turism oferind vacanțe personalizate în Europa și Asia.">
 <title>Travel Agency Page</title>
</head>

<body>
<h1>Discover Italy</h1>
<p>Art, folklore, food, nature, and more. Choose among our wide selection of guided tours and excursions, and live an unforgettable experience exploring Italy.</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 target="_blank" href="https://www.freecodecamp.org/learn">Group Travels</a></li>
<li><a target="_blank" href="https://www.freecodecamp.org/learn">Private Tours</a></li>
</ul>
<h2>Top Itineraries</h2>

<figure>
  <a target="_blank" href="https://www.freecodecamp.org/learn">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Colloseum view" style="width:50%"></a>
<figcaption>Visiting the colloseum in rome</figcaption>
</figure>

<figure>
  <a target="_blank" href="https://www.freecodecamp.org/learn">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Alps view" style="width:50%"></a>
<figcaption>Hiking in the Swiss alps<figcaption>
</figure>

<figure>
  <a target="_blank" href="https://www.freecodecamp.org/learn">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Sea view" style="width:50%"></a>
 <figcaption>Sailing to remote surfing spots</figcaption>
</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/135.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

one of you figcaption closing tag is wrong

Thank you very much. Now I see.

my pleasure happy coding ;-D

1 Like