Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hi, steps 28 and 29 are somehow wrong can you help me

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="description" content="width=device-width, initial-scale=1.0">
    <title>Travel Agency Page</title>
  </head>
  <body>
    <h1>Destination</h1>
      <p>
Tokyo, Japan 
Lisbon, Portugal 
Bali, Indonesia
Dubai, UAE
Barcelona, Spain
New York City, USA
Rome, Italy
Bangkok, Thailand
Sydney, Australia
Mexico City, Mexico
     </p>
     <h2> Packages </h2>
     <p> Deals
       <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"></a>
        <img scr ="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Flights">
        <figcaption>Flights</figcaption> 
      </figure>
      <figure>
        <a target="_blank"href="https://www.freecodecamp.org/learn"></a>
        <img scr ="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Hotel">
        <figcaption>Hotel</figcaption>
      </figure>
      <figure>
        <a target="_blank"href="https://www.freecodecamp.org/learn"></a>
        <img scr ="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Flights+Hotel">
        <figcaption>Flights+Hotel</figcaption>
      </figure>
     </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/134.0.0.0 Safari/537.36 Edg/134.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi there and welcome to our community!

Your code is failing the following tests:

26 Each figure element should contain a figcaption element as its second child.
28 Each of the a elements that are children of your figure elements should contain an image.
29 Each img element should have a valid src attribute.

Your img elements should be nested inside the anchor elements (i.e. between their opening and closing tags).
Your src attributes are incorrectly typed as scr (and should have no space before the =).

You should pass all tests if you fix those things.