Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I have build my code per instruction in lab but until i get error in 2nd and 3rd line why?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="description" content="This is my traveling agency descriotion.">
    <title>Travel Agency Page</title>
  </head> 
  <body>
    <h1>Goa</h1>
    <p>Goa is one of the popular destination for travelers.</p>
    <h2>Packages</h2>
    <p>We offer various types of summer and winter packeges for goa traveling.You can choose any one packege as your 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://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="demo pic1">
      </a>
      <figcaption>Goa Pic 1</figcaption>
    </figure>
     <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="demo pic1">
      </a>
      <figcaption>Goa Pic 2</figcaption>
    </figure>
     <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="demo pic1">
      </a>
      <figcaption>Goa Pic 3</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/136.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Look carefully at the closing tag for your html element.

This helped me out tremendously. Thank you.