Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

  1. The anchor element of your first list item should wrap the text Group Travels.

  2. The anchor element of your second list item should wrap the text Private Tours

  3. Each element should have an href attribute with the value of https://www.freecodecamp.org/learn. Don’t forget the links in the list items.

  4. Each element should have a target attribute with the value of _blank. Don’t forget the links in the list items

this are not passing.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Discover unforgettable travel experiences with Dream Vacations. We offer personalized tour packages, flight bookings, and hotel deals for destinations worldwide. Book your adventure today">
    <title>Travel Agency Page</title>
  </head>
  <body>

    <header>
      <nav>
        <ul>
          <li><a href="#">Home</a></li>
          <li><a href="#">Destinations</a></li>
          <li><a href="#">Packages</a></li>
          <li><a href="#">Top Itineraries</a></li>
          <li><a href="#">Contact Us</a></li>
        </ul>
      </nav>
    </header>

    <main>
      <section>
        <h1>Explore Your Dream Travel Destinations</h1>
      <p>Embark on incredible journeys with our curated travel opportunities. Whether you're seeking adventure, relaxation, or cultural immersion, we have the perfect trip for you.</p>
    </section>

      <section>
        <h2>Packages</h2>
      <p>We offer a diverse range of packages tailored to fit every traveler's desires. Choose between our exciting group adventures or design your own exclusive private tour.</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="rome and center italy" /></a>
        <figcaption>Rome and Center Italy</figcaption>
        </figure>

        <figure>
          <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="nature beauty with mountains" /></a>
        <figcaption>Nature and National Park</figcaption>
        </figure>

        <figure>
          <a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="beautiful islands" /></a>
        <figcaption>South Italy and Islands</figcaption>
        </figure>

      </section>
      <hr>
      <section>
        <h2>Contact Us</h2>
        <p>Ready to plan your next adventure? Get in touch with our travel experts!</p>
        <p>Email: <a href="mailto:royrudro032@gmail.com">info@dreamers.com</a></p>
      <p>Phone: +880 0157662630</p>
      <p>Address: Dinajpur, Bangladesh</p>
      </section>
    </main>
    <hr>

    <footer>
    <p>&copy; 2025 Dream Vacations. All rights reserved.</p>
    <ol>
      <li><a href="#">Privacy Policy</a></li>
      <li><a href="#">Terms of Service</a></li>
    </ol>
  </footer>

  </body>
  </html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Only add what the instructions asked you to add. You have included a header element and section elements that were not asked in the instructions.