Tell us what’s happening:
All my anchor elements have an href value and a target but test 31 is still wrong
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="travel agency page">
<title>Travel Agency Page</title>
</head>
<body>
<h1>Greece</h1>
<p>there's great things in greece</p>
<h2>Packages</h2>
<p>these are the 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://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="the colluseum"></a>
<figcaption>The colloseum at sunrise</figcaption>
</figure>
<figure>
<a href="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="beautiful mountain view"></a>
<figcaption>a beautiful view of the alps at sunset</figcaption>
</figure>
<figure>
<a href="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="a clear blue sea"></a>
<figcaption>A beautiful clear blue sea</figcaption>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 Edg/137.0.0.0
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page