Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Why I should describe my travel destinations under one <p> element if I add more <p> elements after first <h1> element I get an error saying that my <ul> element should be after second <p>, so I have delete those elements to pass the test. But if you think it’s nonsense cause semantically it’s correct. Your code shouldn’t struggle because of some petty details.

Your code so far

<!DOCTYPE html>
<html lang='en'>
  <head>
    <meta charset="utf-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="This is my short travel agency declaration">
  </head>
  <body>
    <h1>So my travel destinations are:</h1>
    <p>1. Shanghai</p>
    
    <h2>Packages</h2>
    <p>So first package is Hong Kong + Bejing</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='1'></a><figcaption>1</figcaption></figure>
    
    <figure><a href='https://www.freecodecamp.org/learn' target='_blank'><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt='2'></a><figcaption>2</figcaption></figure>
    <figure><a href='https://www.freecodecamp.org/learn' target='_blank'><img a src='https://cdn.freecodecamp.org/curriculum/labs/sea.jpg' alt='3'></a><figcaption>3</figcaption></figure>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Suppose you have client requirements to code. Would you consider those petty details? There are other skills required in development besides producing syntactically correct code. One of them is following directions.