Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I’m told my a element is missing the a href and the links but I’ve tried different ways and nothing seems to work. What should it look like?

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="description"content="All about travelling">
  <title>Travel Agency Page</title>
</head>
<body>
  <h1>Journey to Asia, Europe, Central America, and North America</h1>
  <p>Once in a lifetime opportunities to travel along various regions and landmarks 2026</p>
  <h2>Packages</h2>
  <p>Join us as we travel among various continents and explore some great landmarks!</p>
  <ul>
    <li><a>Group Travels</a></li>
    <li><a>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="A building important to Italy"></a>
      <figcaption>Figure 1; The Coliseum of Rome, Italy</figcaption>
  </figure>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="The great alps"></a>
      <figcaption>Figure 2; The Great Alps</figcaption>
  </figure>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Water and a boat"></a>
      <figcaption>Figure 3; Hawaii, USA</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/150.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-travel-agency-page/669e2f60e83c011754f711f9.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @alij1008

Try adding the href attribute to the anchor in the unordered list.

Happy coding