Continuing the discussion from Build a Travel Agency Page - Build a Travel Agency Page:
I am continually getting this error, my last piece to coplete this projrct: You should have an unordered list element below your second p element. here is my code so far:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Travel Agency Page</title>
<meta charset="UTF-8">
<meta name="description" content="Travel to Exotic Places">
</head>
<body>
<main>
<h1>Travel Destinations</h1>
<p>We offer Group Charters to all our Destinations</p>
<p>We offer Private Flights. Call for pricing !!</p>
<h2>Packages</h2>
<p>We offer travel packages to Italy, Switzerland, Bora Bora, The Caymans, and Fiji.</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="Colloseo"></a>
<figcaption>Welcome to Italy</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn"target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Alps"></a>
<figcaption>A beautiful escape</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Sea"></a>
<figcaption>A tranquil day at sea</figcaption>
</figure>
</body>
</html>
I need some help here !!!
Thanks
- List item

