Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

i cant figure out what i’m doing wrong in questions 26,28,31 and 32

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Travel Agency Page</title>
    <meta charset="utf-8">
    <meta 
    name="description"
    content="Discover travel destinations that kep you wanting for more."
    />
  </head>
  <body>
  <h1>Discover Nigeria!</h1>
  <p>Beauty, culture, art and lots more. Discover interesting travel locations in Nigeria that you wouldn't believe unless you see it.</p>
  <h2>Packages</h2>
  <p>Below are our intresting packages:</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="greek-like architecture">
  </a>
  <figcaption>a beautiful architecture</figcaption>
  </figure>
  <figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="moun tain view">
  </a>
  <figcaption>mountain sites</figcaption>
   </figure>
   <figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="boat in  the ocean">
  <a>
  <figcaption>ocean view</figcaption>
   </figure>
   <p>Happy travels!</p>
</body>
</html>

Your browser information:

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

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Here are some troubleshooting steps you can follow. Focus on one test at a time:

  1. Are there any errors or messages in the console?
  2. What is the requirement of the first failing test?
  3. Check the related User Story and ensure it’s followed precisely.
  4. What line of code implements this?
  5. What is the result of the code and does it match the requirement?

If this does not help you solve the problem, please reply with answers to these questions.

hint: check your closing tags

One of your anchor (<a>) tags isn’t properly closed inside a figure, and there’s a small spelling error in your text content.