Tell us what’s happening:
Hello!
Steps 16-19 are coming up as incorrect, but I do not see any formatting errors. For reference, this is the list beneath the second
title, the one with an element wrapped into it. Please let me know what seems to be the issue.
Thank you for your time!
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Travel Agency Page</title>
<meta name="description" content="A travel wesbite to help you plan your next trip."/>
</head>
<body>
<h1>Travel Destinations</h1>
<p>These are a list of places you would definitely want to see for your next vacation!
<ul>
<li>Barcelona</li>
<li>Germany</li>
<li>Hawaii</li>
<li>Banff, Canada</li> </ul>
</p>
<h2>Packages</h2>
<p>These are the packages that are included within our travel agency. The packages include Group Travels as well as Private Tours!</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="Rome Colosseum"/></a>
<figcaption>Rome, Italy</figcaption>
</figure>
<figure> <a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Swiss Alps"/></a>
<figcaption>Swiss Alps</figcaption>
</figure>
<figure> <a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Greece Coast"/></a>
<figcaption>Greece</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/17.5 Safari/605.1.15
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page