Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

  1. You should have an h2 element after your unordered list.

the code as I have submitted it appears to be correct, please help me.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="description" content="A website" />
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Deluxe Travel Agency</h1>
    
    <p>The sun hangs golden and warm in the sky, casting long, soft shadows across the landscape. The air is still and holds a gentle, drowsy heat, broken only by the occasional hum of a breeze through the trees or the distant, rhythmic chirping of insects. Everything feels saturated with light, turning the world a vibrant shade of amber as the day begins its slow, contented drift toward evening.</p>

    <p>We arrange several packages. The first packege is a sea cruise trip to the Virgin Islnds. The second pakerge includes a skiing trip to the lovely Mount Gorge in upstate New York. And a third trip is a wonderful shopping trip to the lovely Monicho shops in New Hampshire.</p>

    <ul>
      <li><a href="#group-travels">Group Travels</a></li>
      <li><a href="#private-tours">Private Tours</a></li>
    </ul>
    <h2>Packages</h2>
    <p>First h2 item</p>
    <h2>Top Itineraries</h2>
    <p>Second h2 item</p>
    
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.securem2.com/commonimages/pages/2021/11/kurtgardnermccauley.jpg" alt="Snowy mountains" width="300" />
      </a>
      <figcaption>Mountains</figcaption>
    </figure>

    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://www.msccruisesusa.com/-/media/us/destinations/ocean-cay/msccruises_oceancay_bahamascruises_ship.jpg?bc=transparent&as=1&mh=606&mw=1020&hash=9DEC32037B9A502F727F22DC5341D7B8" alt="Bahma Curise" width="300">
      </a>
      <figcaption>Cruise</figcaption>
    </figure>

    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://dynamic-media-cdn.tripadvisor.com/media/photo-o/16/db/02/fd/the-outside-market-area.jpg?w=1400&h=-1&s=1" alt="Euperian shopping" alt="Eropean shopping" width="300">
      </a>
      <figcaption>Shoping</figcaption>
    </figure>

    <h2>Destinations</h2> 
    <p>We offer two types of travel packages: group tours and private tours.</p> 
    <p>Our group tours include exciting cruises and shopping adventures. Our private tours feature an unforgettable skiing adventure.</p> 
    
    <h3>Skiing on Mount George</h3> 
    <p>Experience an exciting skiing adventure on Mount George, complete with breathtaking mountain views and a week of outdoor fun.</p> 
    
    <h3>Virgin Islands Package</h3> 
    <p>Enjoy a relaxing week-long cruise through the beautiful Virgin Islands. Your first stop is Vandal Bay, where you can spend the day relaxing on the beach or exploring the local attractions. Then, enjoy a day at sea with all the ship's amenities before visiting the scenic Spotsy Key. Finally, wrap up your vacation with a memorable visit to Port-Au-Prince Cay.</p> 
    
    <h3>Shopping in Monaco</h3> 
    <p>Spend the day shopping in Monaco, where you'll find luxury boutiques, designer brands, and great deals in one of Europe's most famous shopping destinations.</p>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:152.0) Gecko/20100101 Firefox/152.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-travel-agency-page/669e2f60e83c011754f711f9.md at main · freeCodeCamp/freeCodeCamp · GitHub

see these user stories:

  1. You should have an h2 element with the text Packages.
  2. You should have a p element introducing briefly the various packages.
  3. 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.

try putting the h2, p and ul in this order, right now the h2 is below the ul

I have made the changes as you suggested but i am still confused. I just moved the problems to another locution.

Please post your updated code formatted as follows:

There are two ways you can format your code to make it easier to read and test:

  1. After you copy/paste your code into the editor, select it by dragging your cursor over it then click the (</>) button in the toolbar to automatically wrap your code in backticks. (You can click on the animated demo image below to enlarge it.)

  1. Manually add three backticks on a new line above your code and on a new line after your code. Note that a backtick is NOT the same as a single quote('). To find the backtick key on your keyboard, see this post.

To see changes to your post as you make them, you can click the (M+) button on the toolbar to bring up the rich text editor:

Hi @mike_hoague,

I suggest reading through the user stories again to make sure you have implemented them in order, being careful to only add what is asked in the instructions.

Happy coding