Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

My code doesn’t pass the tests for " having two meta elements within your head element". Thank you for help in advance!

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="Discover deals and expert advice on travelling the world your way!">
  </head>
<body>
  <h1>Explore Malaysia</h1>
  <p>Book flights, hotels, and travel packages with Malaysia Airlines. Enjoy exclusive deals and the warmth of Malaysian hospitality.</p>
  <h2>Packages</h2>
  <p>We have packages for families, solo travellers and newlyweds!</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>

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/17.5 Safari/605.1.15

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi and welcome to the forum!
You’re missing the html and body closing tags. Your head element is fine but you will still get some other errors to work with.
Good luck!

Yeah, thanks, but I did not paste the full code because it exceeded possible length of the message( I had long links attached to src in images) But the thing is, it passes all the tests, except one, which is “have two meta elements within your head”

Can you please share your full code? It’ll be easier for others to review your code.

Use GitHub, CodePen.io, or any other similar service to host your code (HTML, CSS files, etc.) and put the link here.

Maybe, using <meta name="viewport" content="width=device-width, initial-scale=1.0"> after the <meta charset="UTF-8"> will work.