Build a Travel Agency Page - Build a Travel Agency Page

Hi, I’m currently stuck on the last step 32. Would like to get some help to better understand what i’ve missed. Thanks in advance !

Your code so far

<!DOCTYPE html>
<html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Travel Agency Page.</title>
  <meta name="description" content="Wanting to travel ? We're here to help, We offer an extensive range of holiday solutions to accommodate to your needs !"/>
  </head>
<body>
  <h1>Discover Italy</h1>
  <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>

  <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">Group Travels</a></li>
    <li><a href="https://www.freecodecamp.org/learn">Private Tours</a></li>
    
    <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="Rome and the coliseum"> </a>
  <figcaption>The Coliseum</figcaption>
  </figure>

<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Italian Nature"> </a>
  <figcaption>The National Parks</figcaption>
  </figure>

<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="South of Italy"> </a>
  <figcaption>South Italian Island</figcaption>
  </figure>

</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum :wave:

Did you see this last part of the test?

Don’t forget the links in the list items.

All your five anchor elements should have an href attribute with the value of https://www.freecodecamp.org/learn and a target attribute with the value of _blank.

There should be 5 links total that you add this to.

Aaah i get it now omg how could i’ve not understood this sonner x) Thanks !

1 Like