Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I keep failing step 32, please help a beginner out.

Your code so far

<!DOCTYPE html>
  <html lang="en">
    <head>
      <meta charset="UTF-8">
      <meta name="description" content="Let's discover the hidden pockets of SA">
<title>"Hidden Pockets"</title>
    </head>
    <body>
      <h1>Our Pockets</h1>
      <p>Join us as we discover the hidden pockets of South Africa.</p>
      <h2>Packages</h2>
      <p>Let's go explore the hidden gems in mountains, forests, and beaches of SA.</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://www.freecodecamp.org/learn">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Still standing" target="_blank">
        </a>
        <figcaption> Stand with Gladiators</figcaption>
        </figure>
        <figure>
          <a href="https://www.freecodecamp.org/learn">
          <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Nature" target="_blank">
          </a>
          <figcaption>High above</figcaption>
          </figure>
        <figure>
          <a href="https://www.freecodecamp.org/learn">
          <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Serene" target="_blank">
          </a>
          <figcaption>Peace</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/141.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

hello adn welcome to fcc forum :slight_smile:

  • you are using this attribute on wrong “element”, currently you are using them on “img” elements
  • use them on “a” elements directly instead
  • typo in li anchor elements

happy coding :slight_smile: