Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I can’t seem to pass the tests 20 and 21. Can someone help me?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta attribute charset="UTF-8">
    <meta
     name="description"
     content="Travel Agency Website for any travel needs">
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Travel to Italy</h1>
    <p>Experience the sights, sounds and smells of one of this worlds very beautiful contries</p>
    <h2>Packages</h2>
    <p>We have many package services, including birthday travel, holiday travel, and even private tour. Contact and agent to see what best firsts your needs!</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">Priavte 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">
      </a>
      <figcaption>The colosseum</figcaption>
    </figure>
    <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="An image of some homes on the Canary Islands">
        </a>
        <figcaption>The Canary Islands</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 a Venice canal">
        </a>
        <figcaption>Venice</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

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-travel-agency-page/build-a-travel-agency-page

the word attribute is not a valid attribute for a meta tag btw.

As for the issue you’re having, its because the words they want use capital T and you didn’t use a capital T

1 Like

then is attribute supposed to be att instead? also, thank you i never would have seen that

1 Like

there is not ‘att’ or ‘attribute’ attribute for meta tags.

You can google how to write the meta tag if you need to know which attributes to use.

1 Like

i see, okay then, i must have just read wrong, thank you

1 Like