Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Can anyone help me solve 8, 26 and 28? The image is there, title is there and the figcaption as well, still it says incorrect.

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="description" content="Will provide custom and unique travel packages that you will not find elsewhere"
  <title>Travel Agency Page</title>
  </head>
<body>
  <main>
    <h1>Travel Destinations</h2>
    <p> Here, we have made travelling easier for you. With our packages you will be able to see a lot more of your visiting place in a very reasonable expense. 
      <h2> Packages </h2>
      <p> We give packages according to days and number of places you wanted to explore. </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="picture of the famous colosseo"</a><figcaption>The most famous Colosseo!</figcaption> 
 </figure>
<figure>
<a href="https://www.freecodecamp.org/learn"target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="picture of the famous alps"</a> <figcaption>Famous alps</figcaption>
      </figure>
  <figure> 
   <a href="https://www.freecodecamp.org/learn"target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg"alt="picture of the blue sea"</a>
<figcaption>Sea for snorkling</figcaption>
  </figure>
   </main>
  <footer>Do not Copy!</footer>
</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

Hi @dhaliwalprabh8008 and welcome to our community!

Your code is almost correct but you have some syntax errors.
You have not closed off some of your elements with closing angle brackets (>).
Read through your code and check that every single element is properly closed off.
Your code should then pass all tests.

Thanks for your help!

1 Like