Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Please help with step 32 :frowning: :frowning: I really don’t know what’s missing here. I have tried everything and have restarted the project multiple times. I am a beginner and don’t have a clue what I am doing:(

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" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="The Colosseum">
  </a>
  <figcaption>Stand where gladiaters stood</figcaption>
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Mountain">
  </a>
  <figcaption>High up</figcaption>
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Blue">
  </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

Just a wee syntax issue. Fix that and you should be good.

1 Like

On your first two you missed an equal sign.

If you input that it will work, also be mindful with the indentation

1 Like

Thank you so much :slight_smile:

1 Like