Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hi, when I run the tests, assignment #5 is marked with an X and I don’t understand why. What’s wrong with my code?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta title="Travel Agency Page">
    <meta description ="This is the best travel agency page in the world">
    <meta name=description content="Package deals and itineraries">
    <meta charset="UTF-8">
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1> Travel Destinations</h1>
    <p>Here are the available travel opportunities:</p>
    <h2>Packages</h2>
    <p>You can have the group package for $200 and the private tour is $500</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>An image of our Rome vacation itinerary</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn"target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="The Alps"></a>
      <figcaption>An image of our Alps vacation itinerary</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn"target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="The Sea"></a>
      <figcaption>An image of our beach vacation itinerary</figcaption>
    </figure>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) 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

Welcome to the forum @AK999

One of the meta attribute values is missing quote marks.

Happy coding

1 Like

Thank you so much. I added quote marks around description and it worked:)). Really appreciate your help :folded_hands: :heart:

1 Like