Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hey everyone!!

The first problem I have is instruction 6.- it says one meta element should have its charset set to UTF-8. I have tried it with upper and lowercase letters and with and without /> and nothing works.

Also, instruction 21 says the anchor element needs to wrap the text Private tours. To my belief, I thought I had done this? Please help me I have been restarting the whole code and attempting it all day with the same outcome.

Thanks in advance :slight_smile:

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Neave's travel agency</title>
    <meta chartset="utf-8" />
    <meta name="description" content="curated trips,group travels and private tours"/>  
  </head>
  <body>
    <h1>Discover your next adventure</h1>
    <p>Welcome to Neave's travel agency, we are here to help you plan the trip of your dreams!</p>
    <h2>Packages</h2>
    <p> Choose from our extensive range of options, designed to fit every need!</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://picsum.photos/id/1015/600/400"alt="Scenic coastline and blue ocean cliffs" />
      </a>
      <figcaption>Amalfi Coast Escape - sunshine, seafood, and seaside towns</figcaption></figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://picsum.photos/id/1005/600/400"alt="Snow-capped mountains reflected in a lake" />
      </a>
      <figcaption>Alpine Wonders- crystal lakes, peaks, and panoramic trains.</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://picsum.photos/id/1011/600/400"alt="City skyline at sunset with river lights"/>
      </a>
      <figcaption>City Lights Tour — food markets, galleries, and skyline views.</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/140.0.0.0 Safari/537.36 Edg/140.0.0.0

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

what is the attribute you are asked to add?

For instruction 6: The attribute I’m asked to add is chartset+”utf-8” inside the tag, apologies if that didn’t answer your question- I’m brand new to this and very stuck!! :):smiley:

sorry i meant ‘=’ not +

are you sure? that it is chartset?

6. One meta element should have its charset attribute set to UTF-8.

so is it chartset or something different?

I am unsure- do I need to put a different attribute?

yes, you need to put the one spelled correctly

vs

OMG :rofl: Thankyou SO much I would have never noticed that!!!

For the second error have I made another silly mistake?

Hi there!
Casing matters here too.

You need:
Private Tours

You have:

I apologise for wasting everybody’s time! Have a great day both of you thank you so much for your help!!:smiley: I’ll improve-hopefully!!:rofl:

1 Like

There’s absolutely no problem: errare humanum est.
You’re welcome and happy coding!

1 Like