I am struggling with understanding why my code is not working. It wants a P element that briefly explains the introduces the packages offered on the website but no matter how I change the description it does not recognise it as correct. Rule 17 is also not registering as correct even though I can see the unordered list under the second P element in my code.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>
Travel Agency Page
</title>
<meta name="description" Content="Travel Destinations">
</head>
<body>
<h1>Travel Destinations</h1>
<p>
Whe offer packages for the following destinations:
<li>
Rome
</li>
<li>
Swiss Alps
</li>
<li>
Ocean Cruise
</li>
</p>
<h2>Packages</h2>
<p>
Explore the Roman colosseum. Trek through snow as you climb the Swiss Alps. Or take a relaxing cruise through crystal clear and tranquil ocean waters by booking Group or Private Tours through one of our travel centers.
</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="Picture of Colosseum in Rome">
</a>
<figcaption>
Travel to gorgeous Rome and tour the colosseum
</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Picture of the Swiss Alps">
</a>
<figcaption>
Travel to sweeden and climb the 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="Picture of the Ocean">
</a>
<figcaption>
Take a relaxing criuse in crystal clear oceans
</figcaption>
</figure>
</body>
</html>
