Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hi I’m stuck on 31, 32. I’ve checked over it multiple times but can’t find what seems to be the problem, any help would be appreciated much thanks.

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Travel Agency Page</title>
  <meta name="description" content="Trave Agency Website innit">
  </head>
  <body>
    <h1>Hawaii, Spain, Nigeria and Thailand.</h1>
    <p>Summer Holdidays, Christmas Holdiays, Easter Holdiays.</p>

     <h2>Packages</h2>

     <p>Madagascar 3 night 5 star hotel.
      Thailand 7 day all inclusive spa resort.
      Hawaii tropical resort 2 day.
    </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="Beutiful Landscape 1"></a> <figcaption>Beutiful Landscape 1</figcaption></figure>

      <figure> <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="beutiful landscape2"></a> <figcaption>Beutiful Landscap2</figcaption></figure>

      <figure> <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="beutiful landscape3"></a> <figcaption>Beutiful Landscape3</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/134.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi. You haven’t done the href and target for these anchor elements.

    <ul>
      <li><a>Group Travels</a></li>
      <li><a>Private Tours</a></li>
      </ul>

1 Like