Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I checked the code multiple times and even asked other people but I still can’t find anything wrong with it. When I tap ‘Run the Tests’ nothing happens.

Your code so far

<!DOCTYPE html>
<html lang='en'>
  <head>
    <meta charset='utf-8'>
    <title>Travel Agency Page</title>
    <meta name='description' content='If you want to visit exciting and fun places around the world, then choose our Travel Agency. We will take you to the most adventurous locations.'/>
    </head>
    <body>
   <h1>Travelling to Your Dream Destination</h1>
   <p> Discover new cultures and new activities.</p>
   <h2>Packages</h2>
   <p>You can either travel with a group of other people, or alone with a private tour guide.</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>
     <ol>
       <li>
         <figure>
           <a href="https://www.freecodecamp.org/learn" target='_blank'> 
           <img src='https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg' alt='Rome'>
           <figcaption>Sightseeing in Rome</figcaption>
           </a>
           </figure>
           </li>
           <li>
             <figure>
               <a href='https://www.freecodecamp.org/learn' target='_blank'>
               <img src='https://cdn.freecodecamp.org/curriculum/labs/alps.jpg' alt='Alps'>
               <figcaption>Hiking on the Alps</figcaption>
               </a>
               </figure>
               </li>
               <li>
                 <figure>
                   <a href='https://www.freecodecamp.org/learn' target='_blank'>
                   <img src='https://cdn.freecodecamp.org/curriculum/labs/sea.jpg' alt='Sea'>
                   <figcaption>Sailing in the sea</figcaption>
         </a>
       </figure>
      </li>
    </ol>
   </body>
 </html>

Your browser information:

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

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

When you run the tests you should get a message in the console

if it does not appear try reloading the page then running the tests

double check the user story for this, you are not following it properly

1 Like

hi and welcome to the forum.

As an initial step, you should try fixing any syntax errors in your code.
To find them you can paste the code into the online validator here

then read through the Error messages and fix one by one

1 Like

Thank you, I will check it right now