Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Step 8 is wrong and I dont know why. I started today but I feel like an idiot for not understanding what mistake I made

Your code so far

<!DOCTYPE html>
<html>
  <html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="description" content="Travel agency page for countries"
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Travel Opportunities</h1>
    <p>Insert countries here</p>
    <h2>Packages</h2>
    <p>Insert packages here</p>
    <ul>
      <li><a href="https://www.freecodecamp.org/learn" target="_blank"> Group Travels</li></a>
      <li><a href="https://www.freecodecamp.org/learn" target="_blank">Private Tours</li></a>
    </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="Coloseeo"></a>
    <figcaption>Colosseo</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>Alps</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>Sea</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/138.0.0.0 Safari/537.36 OPR/122.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi there!
You have unclosed tag above the title

Welcome to the forum @RoninJin

Syntax highlighting is giving you some information. The meta element is missing a closing angular bracket.

Web development should thought as a marathon, not a sprint.

Happy coding

Thanks, how do I get syntax highlighting when I do these tasks

don’t you see things in the editor having different colors?

Don’t worry, you didn’t do anything big wrong — it’s just a few small mistakes.

You used two <html> tags, but only one is needed.
Also, in your <meta> tag, you forgot to close it with >.
And your <a> tag should be inside the <li> tag, not outside it.

Fix these and Step 8 will work fine. You’re doing good

I do but isn’t it usually red if there’s a mistake? I dont get that on mine

no, syntax highlighting highlights different parts of syntax different colors, there isn’t a color for mistakes, but you can notice something is wrong if a thing is not its usual color, that means it is being identified wrong and there is a syntax error somewhere before that

the syntax highlighting colors are different between dark and light mode