Ok so which list? The list of “Itineraries”? the list of “Travel Packages”?
Also when I close the figcaption element with the figcaption closing I get an X for #26 and #28 and when I close it with a closing element it comes up as checked fine. So not sure why.
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://unsplash.com/photos/an-aerial-view-of-a-village-on-the-edge-of-a-cliff-JzpZHTFtS7A" alt="ocean views"</a>
<figcaption>Beautiful Scenery in BDB</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://unsplash.com/photos/a-beach-with-a-bunch-of-houses-on-top-of-it-Co8midqDjy4" alt="beach houses on cliff"</a>
<figcaption>Nice homes in BDB</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://unsplash.com/photos/white-and-red-boat-on-sea-near-houses-during-daytime-GfrL3VVbPjM" alt="boats in sea"</a>
<figcaption>A lot to do</figcaption>
</figure>
</body>
</html>
Ok so I made these revisions and #28 was cleared but still off on #26, #31 and #32 , but not sure about a ul element as this section does not require it.
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://unsplash.com/photos/an-aerial-view-of-a-village-on-the-edge-of-a-cliff-JzpZHTFtS7A" alt="ocean views">
<figcaption>Beautiful Scenery in BDB</figcaption></a>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://unsplash.com/photos/a-beach-with-a-bunch-of-houses-on-top-of-it-Co8midqDjy4" alt="beach houses on cliff">
<figcaption>Nice homes in BDB</figcaption></a>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://unsplash.com/photos/white-and-red-boat-on-sea-near-houses-during-daytime-GfrL3VVbPjM" alt="boats in sea">
<figcaption>A lot to do</figcaption></a>
</figure>
</body>
</html>```