Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I have tried this 3 time but I doesn’t work. The numbers 22,23 and 31 are saying they aren’t correct. P.S ( I may be stupid because i’m not that good at coding/programming :frowning: I CAN’T EVEN DO BLOCK CODE!!!
Any help is appreciated.

Your code so far

<!DOCTYPE html>
<html lang="en">
 <head>
   <meta charset="utf-8">
   <title> Travel Agency Page </title>
   <meta name="description" content="Best travel in the world">
   </head> 
   <body>
     <h1> Ohio </h1>
     <p> From Ohio to the keys </p>
     <h2> Packages </h2>
     <p> Best Places </p>
     <ul>
       <li> 
         <a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels
         </a>
         </li>
       <li> 
         <a href="https://freecodecamp.org/learn" target="_blank">Private Tours
         </a>
         </li>
     </ul
      <h2>Top Itineraries</h2>
      <figure>
        <a href="https://freecodecamp.org/learn"target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="colosseo">
        </a>
        <figcaption>Colosseo</figcaption>
        </figure>
        <figure>
          <a href="https://freecodecamp.org/learn"target="_blank">
          <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="alps">
          </a>
          <figcaption> Alps </figcaption>
          </figure>
          <figure>
            <a href="https://freecodecamp.org/learn"target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="sea"></a>
             <figcaption>Sea</figcaption>
             </figure>
             </body>
             </html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum @s.rwudhi

Learning to program is difficult for everyone, we have all been there.

The editor is giving you a clue as to why the h2 element is not working.
Have a look at the closing tag before the h2 element.

Check you have the required href value.

Happy coding