Tell us what’s happening:
my figcaption elements are not passing the test. I must be missing something that’s just obvious but I can’t see what I am missing to pass test 26
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Travel Agency Page</title>
<meta name="description" content="A short travel agency blog to help with your travels">
</head>
<body>
<h1>Travel Destinations</h1>
<p>Below I will be presenting some travel options for a short trip</p>
<h2>Packages</h2>
<p>Brief introduction for the travel packages I am too lazy to make right now.</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="Roman arena lit up at night" /></a>
<figcaption>Rome</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Mountain Vistas" /></a>
<figcaption>Mountain Vistas</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="ocean view" /></a>
<figcapton>Ocean Views</figcaption>
</figure>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:137.0) Gecko/20100101 Firefox/137.0
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page