Build a Travel Agency Page - Build a Travel Agency Page (Step 17)

Tell us what’s happening:

Test 17 is checking to see if I have an unordered list under my second p element (under the first h2) . I seem to have that but it’s not clearing. Every other test seems to check out fine. Am i missing something obvious? Thanks in advance.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="Japan Travel Guide">
  </head>
  <body>
    <h1>Hokkaido, Okinawa & Kyushu</h1>
    <p>
      Whether it be your first time traveling to Japan or if you're already a veteran, here are some spots tourists tend to look over when visiting the land of the rising sun.
    </p>
    <h2>Packages</h2>
    <p>
      We have three locations to select for your packaged tour.
    </p>
    <p>
      Explore the snowy lands and home to the most unique Japanese foods in Hokkaido
    </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="Roman Colosseum" />
        </a>
        <figcaption>A tour of the city and colosseum replica</figcaption>
      </figure>
      <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img
          src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg"
          alt="Mountain Ranges"/>
      </a>
      <figcaption>A beautiful hike in the mountain ranges</figcaption>
      </figure> 
      <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank">
          <img 
            src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg"
            alt="Boat in clear blue ocean"/>
        </a>
        <figcaption>Beach and boat tour of the Okinawan seas</figcaption>
      </figure>  
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:137.0) Gecko/20100101 Firefox/137.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

it looks like it’s below your third p element instead of below your second p element

Yes I just fixed it as well! It looks like I misinterpreted the instructions of step 15+16 and initially thought I needed two p elements under my first h2 when I read “second p element”

Thanks for confirming with me!