Build a Travel Agency Page

Tell us what’s happening:

Hey Peeps,

Need some help with Question 5. Its asking me to use a name and content attribute in one of the meta elements and im not sure what to do. After looking at other peoples work, I saw that they dont even have a second meta element. If any knows how to fix this would be much appreciated

Your code so far

<!DOCTYPE html>
<html lang='en'>
  <head> 
    <meta charset='UTF-8'>
    <meta name='Travel Agency' content='text'>
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Reccomended Travel Destinations</h1>
    <p>New york, Paris and France are the most popular</p>
    <h2>Packages</h2>
    <p>There are many packages including</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='1'></a>
      <figcaption>Rome</figcaption>
    </figure>
    <figure>
      <a href='https://www.freecodecamp.org/learn' target='_blank'>
        <img src='https://cdn.freecodecamp.org/curriculum/labs/alps.jpg' alt='2'>
      </a>
     <figcaption>Mountain</figcaption>
    </figure>
    <figure>
      <a href='https://www.freecodecamp.org/learn' target='_blank'> 
        <img src='https://cdn.freecodecamp.org/curriculum/labs/sea.jpg' alt='3'>
      </a>
     <figcaption>Sea</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

1 Like

Welcome to the forum @pbalekjian

  1. One meta element should have a name attribute with value of description and a non-empty content attribute.

Try using the value mentioned in the test for the name attribute.

Happy coding

Thanks bro! That worked, was stuck on it for a while lol

1 Like