Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

16 and 17 won’t check for me and I’ve tried redoing the ul section a couple of different times and I don’t see what the mistake is on the front end. Any help would be appreciated.

    1. Your second p element should introduce briefly the various packages.
  • Failed:17. You should have an unordered list element below your second p element.

Also please dont’ judge the captions lol.

Your code so far

<!DOCTYPE html>
  <html lang="en">
  <head>
    <meta charset="UTF-8"/>
    <meta name="description" content="Find and book the best gay deals for visiting Hawaii"/>
      <title>="Gays on the Run"?</title>
    </head>
    <body>
  <h1>Visit the Rainbow State</h1>
    <p>Come see why Hawaii is called the Rainbow State. We'll set you up with the gayest of Hawaiian vacations. Bears, cubs, otters, twinks can come too, enjoy the best the islands have to offer<p>
  <h2>Packages</h2>
  <p> Here are some fun pacakages that you can buy.We have group and private tours. </p>
    <ul>
      <li><a target="_blank" href="https://www.freecodecamp.org/learn">Group Travels</a></li>
      <li><a target="_blank" href="https://www.freecodecamp.org/learn">Private Tours</a></li>
    </ul>
<h2>Top Itineraries</h2>
<figure>
  <a target="_blank"href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg"/alt="The Colosseum for some reason"></a>
  <figcaption>The Colosseum is not in Hawaii but it was definitely gay.</figcaption>
</figure>
<figure>
  <a target="_blank" href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg"alt="Mountains"/></a>
  <figcaption>These mountains are pretty and gay stuff probably happens there</figcaption>
</figure>
<figure>
  <a target="_blank" href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg"alt="Ocean"/></a>
  <figcaption>Boats.</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

when you have errors like this you may try with validating your html with a tool like this: Ready to check - Nu Html Checker

for some reason it doesn’t capture the issue you are having

you do not need to use the = equal sign here, everything between the opening and closing tag is the title

your issue is here, specifically at the end

Thank you! That fixed it! I was just confused that the error was showing up after the second paragraph and with the list but I get it now!