Tell us what’s happening:
“Failed:32. Each a element should have a target attribute with the value of _blank. Don’t forget the links in the list items.”
It’s literally this one thing that I am stuck on and I don’t understand it because the target=“_blank” attribute is there on the link items but the test is saying it’s not there, everything has passed minus this one thing and I have tried moving the target=“_blank” attribute next to the a href and after but to no success, please help as it’s so frustrating
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Travel agency page detailing activities do to in Jamaica">
<title>Travel Agency Page</title>
</head>
<body>
<h1>🇯🇲 Discover Jamaica 🇯🇲</h1>
<p>Come Discover Jamaica, a country of sun-drenched beaches, warm tropical breezes and rich cultural heritage.</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 beach towns to discover Jamaica's most famous areas.</p>
<ul>
<li><a target="_blank" href="https://www.freecodecamp.org/learn">Group Travels</a></li>
<li><a target="_blank" href="https://www.freecodecamp.org/learn" >Private Tours</a></li>
</ul>
<h2>Top Itineraries</h2>
<figure>
<a href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="rocky waterfall surrounded by palm trees" target="_blank"></a>
<figcaption>colusseum</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="rocky waterfall surrounded by palm trees" target="_blank"></a>
<figcaption>the sea </figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="rocky waterfall surrounded by palm trees" target="_blank"></a>
<figcaption>the mountains</figcaption>
</figure>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page