Build a Travel Agency Page

Tell us what’s happening:

After trying multiple small changes, comparing my code to what has already been asked on here, and running my code through VScode, it is still telling me steps 2, 3, and 9 are wrong. Any help is appreciated. I’m guessing it’s an issue with my original Doctype declaration. Thanks!

Your code so far

<!DOCTYPE html> 
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="index">
<title>Travel Agency Page</title>
</head>
<body>
  <h1>Travel Destinations</h1>
  <p>Below are the recommended travel destinations.</p>
  <h2>Packages</h2>
  <p>We have several packages to choose from including...</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="A picture of the colosseum">
    </a>
    <figcaption>Rome</figcaption>
  </figure>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="A picture of the Alps"></a>
    <figcaption>The Alps</figcaption>
  </figure>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="A picture of the Sea"></a>
    <figcaption>The Sea</figcaption>
    </figure>
  </body>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) 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

Welcome to the forum @Rainbow_wolf

9. You should have a body element within your html element.

One of those elements is missing a closing tag.

Happy coding

你需要在body元素后面写上html元素的结束标签,