I am absolutely stuck with the parcer not noticing the H2 after the unordered list. I’ve tried even removing all and every space between the </ul>
and <h2>
, but that didn’t help either.
What can I improve? I’ve spent over two hours experimenting with this exact issue
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Best travel search engine">
<title>Travel Agency Page</title>
</head>
<body>
<h1>Travel destinations</h1>
<p> Travel to North Korea and Afghanistan as long as the regime is still in place!</p>
<p> Packages don't matter so much as this point</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> Packages don't matter so much as this point</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">
</a>
<figcaption>The Roman Colosseum</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>The Alps</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>The Sea</figcaption>
</figure>
</body>
</html>