Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

no.16
it asked me to put an unordered list under the second

element and after I added the

    element with the accurate instructions, it didn’t get checked so I am stuck now .

    Your code so far

    <!DOCTYPE html>
    <html lang = "en">
      <head>
    <meta charset = "UTF-8">
    <title> Travel Agency Page </title>
        </head>
        <body>
    <h1>Travel Agency </h1>
      <p>
    Dahab-Egypt , Roma-Italy , Madrid-Spain
    </p>
    <h2> Packages </h2>
    <p> 4-Nighters </p>
    <p> 14-Nighters </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>
          
    
    
    
    
    
    
        </body>
        </html>
    

    Your browser information:

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

    Challenge Information:

    Build a Travel Agency Page - Build a Travel Agency Page

Hi, and welcome to the forum. :wave:

  • You should have an h1 element to present your travel destinations.
  • You should have a paragraph below the h1 element introducing the travel opportunities. (1st p element)
  • You should have an h2 element with the text Packages.
  • You should have a p element introducing briefly the various packages. (2nd p element)
  • You should have an unordered list element with two list items. The two list items should have the text Group Travels and Private Tours, respectively. The text of each list item should be enclosed by an anchor element.
  1. You should have an unordered list element below your second p element.

Your ul is under the 3rd p element. You have too many ‘p’ elements.