Tell us what’s happening:
It’s failing on #18 and #19 but I don’t get it why, I already put two items in unordered list below the second paragraph.
Getting this error
// running tests 18. You should have two items in your unordered list. 19. Both your list items should contain an anchor element. // tests completed
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="A freecodecamp Full Stack Lab" >
<title>Travel Agency Page</title>
</head>
<body>
<!-- <main> -->
<h1>Travel Destinations</h1>
<p>Art, folklore, food, nature, and more. Choose among our wide selection of guided tours and excursions, and live an unforgettable experience exploring Italy.</p>
<h2>Packages</h2>
<p>We offer an extensive range of holiday solutions to accommodate the needs of all our clients. From daily excursions in the most beautiful cities, to thorough tours of hidden villages and medieval towns to discover Italy's lesser-known sides.</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>
<p>Below are few of our packages</p>
<ul>
<li>Rome</li>
<li>Alps</li>
<li>Mediterranian</li>
</ul>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"> <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg"/ alt="Colosseum of Rome druing evening"> </a>
<figcaption>Coloseum of Rome</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"> <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Alps Mountains"/> </a>
<figcaption>Alps Mountain Range</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"> <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Mediterranian Sea"/> </a>
<figcaption>Mediterrarian Sea</figcaption>
</figure>
<!-- </main> -->
</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/26.0.1 Safari/605.1.15
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page