Building A travel Agency

hello i have issues with: 19 - saying both items should contain an anchor element, but they do already 22 - Says h2 element after unordered list, the h2 element is presents also 26 - says there should be a figcaption in each figure element, that is also present 28 - says each a element in the figure element should contain an image, but they do already 31 &32 - says each a element should have an href and target attribute with respective value, and they all do…so i need help resolving this

```
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>The Jude Travel Agency</title>
    <meta name="description" content="this is a travel a site for booking flights">
  </head>
 <body>
   <h1>The Judes Travel Agency</h1>
   <p>Welcome to TJT Agency, where you can book flights and make room reservations in one place</p>
   <h2>Packages</h2>
   <p>We have various packages to suit youyr needs and budget</p>
   <ul>
    <li><a target="_blank" href="https://www.freecodecamp.org/learn">Group Travels</a></li>
    <li><a target="_blank" href="https://www.freecodecamp.org/learn">Private Tours<a/></li>
   </ul>
  <h2>Top Itineraries</h2>
   <figure>
     <a target="_blank" href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="colosseo at night"></a>
     <figcaption>Damaged Colosseo at night</figcaption>
   </figure>
   <figure>
     <a target="_blank" href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="alps with bright skies"></a>
     <figcaption>Alps with a beautiful horizon</figcaption>
   </figure>
   <figure>
     <a target="_blank" href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="sea with waves"></a>
     <figcaption>A clear blue sea</figcaption>
   </figure>
 </body>
</html>
```
https://www.freecodecamp.org/learn/responsive-web-design-v9/lab-travel-agency-page/build-a-travel-agency-page

Please do not post duplicate topics.

Next time, use this:

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Get Help > Ask for Help button located on the challenge.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.