Build a Travel Agency Page

Continuing the discussion from Build a Travel Agency Page - Build a Travel Agency Page:

I am continually getting this error, my last piece to coplete this projrct: You should have an unordered list element below your second p element. here is my code so far:

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Travel Agency Page</title>
  <meta charset="UTF-8">
  <meta name="description" content="Travel to Exotic Places">
</head>
<body>
<main>
  <h1>Travel Destinations</h1>
   <p>We offer Group Charters to all our Destinations</p>
   <p>We offer Private Flights. Call for pricing !!</p>
   
  <h2>Packages</h2>
<p>We offer travel packages to Italy, Switzerland, Bora Bora, The Caymans, and Fiji.</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="Colloseo"></a>
   <figcaption>Welcome to Italy</figcaption>
   </figure>

    <figure>
<a href="https://www.freecodecamp.org/learn"target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Alps"></a>
  <figcaption>A beautiful escape</figcaption>
  </figure>

  <figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Sea"></a>
  <figcaption>A tranquil day at sea</figcaption>
  </figure>

</body>
</html>

I need some help here !!!
Thanks

  1. List item

Can you please post the url of the challenge you are doing.

I’ve edited your post to improve the readability of the code. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Build a Travel Agency Page - Build a Travel Agency Page

Please post the link.

I am new to this so I don’t relly know how to do that.

Welcome to the forum @rlbrown572000

Below the h1 element, you should have only one paragraph element.

Happy coding

it is the url in the browser bar when you are on the page of the challenge

next time you need help I highly suggest you use the help button

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Get Help > Ask for Help button located on the challenge.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

Thank you for that, it worked and passed the test.

1 Like