Tell us what’s happening:
When I run the test, everything except for the and element checks come back fine. Is there something I’m doing wrong?
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta
name="description"
content="Discover new places to travel"
/>
<meta charset="UTF-8">
<title>Travel Agency Page</title>
</head>
<body>
<h1>Travel Destinations</h1>
<p>Travel the world with us></p>
<h2>Packages</h2>
<p>see our tour packages!</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="Colosseum"></a>
<figcaption>Colosseum in Rome</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Mountains"> </a>
<figcaption>Mountains</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Deep Blue"> </a>
<figcaption>Deep Blue</figcaption>
</figure>
</body>
</hmtl>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:138.0) Gecko/20100101 Firefox/138.0
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page