Tell us what’s happening:
What am I missing from the below error? Everything after this passes so I’m very confused
Failed: 16. Your second p element should introduce briefly the various packages.
Failed: 17. You should have an unordered list element below your second p element.
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="This is a demo page for a real travel agency. Sadly, I can't afford to get anyone anywhere...">
<title>
Travel Agency Page
</title>
</head>
<body>
<h1>
Destinations
</h1>
<p>
These are all of our (fake) travel opportunities.
<p/>
<h2>
Packages
</h2>
<p>
These are our various travel packages.
</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="a picture of the Roman Colosseo"></a>
<figcaption>
Itinerary 1
</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="a picture of the alps"></a>
<figcaption>
Itinerary 2
</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt=" a view of the sea"></a>
<figcaption>
Itinerary 3
</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