Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I can’t for the life of me figure out what I’m missing here

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="description" content="jettrekker">
    <title>Jettrekker</title>
    </head>
    <body>
      <h1>London, Paris, Africa. Anywhere!</h1>
      <p>Adventure Travel Opportunities

For travelers who crave excitement and adrenaline, our adventure travel options deliver experiences beyond the ordinary.

Trek through breathtaking mountain ranges

Explore remote jungles and national parks

Go scuba diving, snorkeling, or surfing in crystal-clear waters

Experience desert safaris, zip-lining, and wildlife encounters

Perfect for thrill-seekers and outdoor lovers, these trips combine physical challenge with awe-inspiring scenery.</P>
<h2>Packages</h2>
<p>🌴 Beach Escape Packages Includes:

Beachfront or ocean-view accommodations

Daily breakfast or all-inclusive dining

Airport transfers

Optional water sports and island tours

Ideal for: Couples, honeymooners, relaxation seekers</p>
<ul>
  <li><a href="Group-Travels">Group Travels</a></li>
  <li><a href="Private-Tours">Private Tours</a></li>
  </ul>
  <h2>Top Itineraries</h2>
    
    <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank"></a>
    <img src=" https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="paris">
    <figcaption>colosseo</figcaption>
    </figure>
    
    <figure>
      <a href="https://www.freecodecamp.org/learn"target="_blank"></a>
      <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="rome">
      <figcaption>alps</figcaption>
      </figure>
    
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank"></a>
      <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Barcelona">
      <figcaption>sea</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/143.0.0.0 Safari/537.36 Edg/143.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Your anchor elements are not wrapped around anything.

You need to add a space before the target attribute here:

g/learn"target="_blank

You haven’t added href and target attributes as instructed to all the anchor elements in your code.