Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hii everyone. I’m stuck on “the h2 should come after the unordered list”. I’ve tried everything but can’t seem to work this out. If u have any clues please let me know. I appreciate your help.

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
    <title>Travel Agency Page></title>
    <meta name="description" content="a short description">
  </head>
  <body>
  <h1>Travel destinations</h1>
  <p>My favorites are exotic places!</p>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://c.pxhere.com/photos/c9/58/amalfi_coast_italy_sea_mediterranean_europe_travel_landscape-740268.jpg" alt="Summer vacation"></a>
    <figcaption>We <strong>all</strong> love summer!</figcaption>
    </figure>
    <p>Traveling is <a href="https://www.freecodecamp.org/learn" target="_blank">refreshing,</a> isn't it?</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>Packages</h2>
  <p>Are you interested yet?</p>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="The mountains"></a>
    <figcaption>Have you seen the <em>Alps</em>?</figcaption>
 
  <h2>Top Itineraries</h2>
    <p>See more <a target="_blank" href="https://www.freecodecamp.org/learn">details</a> now!</p>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="The Alps"></a>
      <figcaption>Everybody <em>loves</em> the mountains!</figcaption>
  </figure>
  <h2>Packages</h2>
    <p>Two at the price of one!</p>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https:cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Colosseum"></a>
    <figcaption>You <em>can't</em> miss this!</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/142.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi and welcome to the community!

You need to pay close attention to user stories 7-10.
Based on those, you should first have an h2 element, then a p element and then the unordered list, and then the second h2.

I hope this helps. Good luck!

1 Like

thank u, i eventually got it after starting all over.

1 Like