Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Im not sure why i can not get 26 and 28 correct. Ive looked at similar examples and searched other post with same issue but im not seeing the solution. Can someone help? ty

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta name="description" content="Come see Japan"></meta>
    <meta charset="UTF-8"></meta>
    <title>Visit Japan</title>
    </head>
    <body>
      <h1>Visit Japan</h1>
      <p>From food and wine tasting to jungles and thrills. If you're up for a fun adventure this tour is for YOU!</p>
      <h2>Packages</h2>
      <p>We have a wide range of activities to accomadate all ages from walking tours to ziplining and more. </p>
      <ul>
        <li>
          <a>Group Travels</a></li>
        <li>
          <a>Private Tours</a></li>
      </ul>
      <h2>Top Itineraries</h2>
    </body>
    <figure>
      <a> <img src="https://upload.wikimedia.org/wikipedia/en/thumb/9/9e/Flag_of_Japan.svg/510px-Flag_of_Japan.svg.png"</a> 
      <figcaption>City Life</figcaption>
      </figure>
    <figure>
      <a> <img src="https://upload.wikimedia.org/wikipedia/en/thumb/9/9e/Flag_of_Japan.svg/510px-Flag_of_Japan.svg.png"</a> 
      <figcaption>Wine Tasting</figcaption>
      </figure>
    <figure>
      <a> <img src="https://upload.wikimedia.org/wikipedia/en/thumb/9/9e/Flag_of_Japan.svg/510px-Flag_of_Japan.svg.png"</a> 
      <figcaption>Walking Tour</figcaption>
        </figure>    
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

You haven’t closed off your img elements properly. They’re missing a closing angle bracket (>).

1 Like