Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Numbers 18,19,21,22,25,26,28,30,31,32 are failing to pass. I need help checking my code as I don’t know what I am doing wrong at this point. Any feedback on this is greatly appreciated as I am new to coding.

Your code so far

<!DOCTYPE html>
<html>
  <html lang ="en">
    <head>
      <meta charset="UTF-8">
      <meta content="Travel Agency Page" property="Travel Agency Page">
      <meta name="description" content="Book your travel with us.">
      <title>Travel Agency Page</title>
      </head>
        <body>
         <main>
      <section>
      <h1>Travel Destinations</h1>
      <p>Come fly away to incredible destinations!</p>
      <ul>
        <li>Rome</li>
        <li>Switzerland</li>
        <li>Caribbean Islands</li>
      </ul>
      </section>
      
    <section>
    <h2>Packages</h2>
    <p>All packages are all inclusive, including airfare.</p>
    <ul>
      <li><a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels</img></li>
      <li><a href="https://www.freecodecamp.org/learn" target="_blank">Private Tours</img></li>
    </ul>
    </section>
      
    <figure><a>
    <h2>Top Itineraries</h2>
    <ul>
    <li><a href="https://www.freecodecamp.org/learn" target="_blank">Rome Italy</a><figure><figcaption>Colosseum in Rome, Italy</figcaption></figure></img></li>
    <li><a href="https://www.freecodecamp.org/learn" target="_blank">Swiss Mountain View</a><figure><figcaption> Mountains of Switzerland </figcaption></figure></img></li>
    <li> <a href="https://www.freecodecamp.org/learn" target="_blank">Caribbean Islands</a><figure><figcaption>Caribbean Islands Oceanside</figcaption></figure></img></li>
    </ul>
    </figure></a>

    <figure>
     <a href="https://www.freecodecamp.org/learn" target="_blank"></a><img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="The colosseim in Rome."> <figcaption>Rome, Italy</figcaption></img>
    </figure>
     
    <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank"></a><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg"><alt="The Swiss Mountain Side"><figcaption>Swiss Mountains</figcaption></img>
    </figure>

    <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank"></a><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg"><alt="Bright Blue Ocean"><figcaption>Deep Blue Ocean</figcaption></img>
        
        </figure>
      </main>
    </body>
</html>




Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Please talk about what those numbers mean and what specifically you have tried to figure out why those tests don’t pass

I have tried googling the issue, rephrasing the statement(code), looking through 4 of the coding books that I currently own, and rewatching the instructional videos or lecture 4 times.

Please use words to describe what the tests are instead of posting a picture.

Reviewing stuff is great, but what exactly did you review? It would be easiest if you say which parts of your code you think meet each requirement from a test.

Also, it would help if you use normal spacing/indentation.

the first one says “18. You should have two items in your unordered list.”, do you think your code has that?

You have a second ul, do you think that may be an issue?

Is there something different I should be calling a second list in my code?

Thanks for the feedback.

How many unordered lists do the instructions ask for?

“You should have an unordered list below second paragraph.”

I have corrected the code from the feedback received and it is still flagging as incorrect. Any other ideas?

An HTML validator can help you locate your errors.

https://validator.w3.org/

This is the only place I am now flagging is numbers 16 and 17

          <p>We offer two packages that include Group Travels and Private Tours, book your trip today! All packages include airfare to selected locations.From numerous holiday excursions and friendly staff to point you in the right direction.</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>

What are numbers 16 and 17? How are you stuck debugging? What is your current full code?