Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I can’t seem to figure out what’s wrong with question 28.
If someone is able to help, thank you in advance.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title> Welcome to Japan! </title>
    <meta charset="utf-8">
    <meta name="description" content="Build a Travel Agency Page"> 
    </head>
    <body>
    <h1> Welcome to Japan! </h1>
    <p> Discover the many events and festivals, temples and castles, theme parks and hot springs, beaches and outdoor activities that Japan has to offer. </p>
    <h2> Packages </h2>
    <p> Our Grand Japan Tour packages are dynamic vacations filled with temples & sights, a bullet train ride, a tea ceremony, and more during your Japan adventure. </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"></a>
    <figcaption>Visit the anual Cherry Blossom festival!</figcaption>
      <img src="https://travel.rakuten.com/contents/sites/contents/files/styles/max_1300x1300/public/2024-02/yozakura-japan_1.jpg?itok=wIaNYCXL" alt="Cherry Blossom Festival"</img>
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank"></a>
  <figcaption> Kiyomizu-dera Temple, Kyoto </figcaption> 
  <img src="https://www.travelyesplease.com/wp-content/uploads/2019/06/04-19847-post/IMG_3003-Edit-Edit.jpg" alt="Kiyomizu-dera Temple, Kyoto"</img>
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank"></a>
   <figcaption> Visit the famous Osaka Castle! </figcaption> 
  <img src="https://www.japan-guide.com/g18/740/4000_top.jpg" alt="Osaka Castle"</img>
</figure>     
</body>
</html>

Your browser information:

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

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Does that anchor element contain an image?

1 Like

In addition to @fcc4b6d10c4-b540-4e2 advice the syntax of your image elements are wrong inside your figure elements. Remember that image elements are self closing element.

1 Like