Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

on task 2 and 3 and 9 it keeps on saying its wrong but i do have a html element for some reason its not picking up the html elements

2. You should have an html element with lang set to en.

3. You should have a head element within the html element.

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

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title> Travel Agency Page </title>
    <meta charset="utf-8">
    <meta name="description" content="this is where i type something good for clicks">
  </head>
    <body>
    <main>
    <h1>Travel Destinations</h1>
      <p>this is all the places you can visit for an arm and a leg</p>
    <h2>Packages</h2>
      <p>we got the expensive ones and the more expensive ones we dont care you will pay a lot</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 description of the image" />
        </a>
        <figcaption>damaged building which shouldn't be because its a colosseum</figcaption>
      </figure>
            <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="a description of the image" />
        </a>
        <figcaption>some mountains remember to bring shoes</figcaption>
      </figure>
            <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="a description of the image" />
        </a>
        <figcaption>holding your breath too long can make you not exist no more</figcaption>
      </figure>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Focus on just 1 test at a time.

An “element” refers to both the opening and closing tags and any nested content.

<p>This is a paragraph</p>

Are your elements complete?

the rest of the tasks is completed yes its just those 3 that doesnt want to complete

and do you have all the pieces that make those elements?

yes here is a part of the code

Travel Agency Page

Travel Destinations

so you have all the pieces for html and body element?

can you list what are the parts of an element?

oh i see now i need to close out the html element