Tell us what’s happening:
whats wrong? ive done what its telling me to do and its not working, i put a href attribute with the specified link inside all anchor elements.
Your code so far
<!DOCTYPE html> <!-- Boilerplate -->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Page about travels">
<title>Travel Agency Page</title>
</head>
<body>
<!-- Boilerplate -->
<section>
<h1>Travel agency</h1>
<p> We offer many affordable packages to exotic and non exotic locations.</p>
</section>
<h2>Packages</h2>
<p>Here is a list of all of our 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" href="https://www.freecodecamp.org/learn" target="_blank">
<img src="colosseo.jpg" alt=Rome></a>
<figcaption>A wonderful trip to Italy to see the Colloseum</figcaption>
</figure>
<figure>
<a href="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" href="https://www.freecodecamp.org/learn" target="_blank">
<img src="alps.jpg" alt="The Great Alps"></a>
<figcaption>An adventerous trip to the great alps in France</figcaption>
<figure>
<a href="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" href="https://www.freecodecamp.org/learn" target="_blank">
<img src="sea.jpg" alt="The Lovely Sea"></a>
<figcaption>A lovely trip to The Lovely Sea in Turkey</figcaption>
</figure>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page