<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Travel agency page showcasing packages" />
<title>Travel Agency Page</title>
</head>
<body>
<h1>Welcome to Our Travel Agency</h1>
<p>We scour the best deals for you!</p>
<p>We offer the best deals for domestic and foreign traveling.</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>Packages</h2>
<p>Our packages range from bronze to rose gold.</p>
<p>Each tier is catered to the customer to include once in a lifetime experiences.</p>
<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="Colosseum in Rome" />
</a>
<figcaption>Rome and Central Italy</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="\_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/italian-alps.jpg" alt="Alps mountains" />
</a>
<figcaption>The Alps</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="\_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/amalfi-coast.jpg" alt="Sea view" />
</a>
<figcaption>The Sea</figcaption>
</figure>
</body>
</html>
question 22 states that I need a h2 element right after my unordered list
<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>Packages</h2>
<p>Our packages range from bronze to rose gold.</p>
Im not sure why but when i copied my code it failed to paste the ul but here is where i think the error is
I’ve edited your post to improve the readability of the code. When you enter a code block into a forum post, please precede it with three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add the backticks.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').
You need to put the code elements in the correct order. I would check that everything matches the order in the example:
Like I said, you need to make sure you put all of the code elements in the exact same order.



