Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

  1. Each img element should have an alt attribute with an appropriate value.

Failed:32. Each a element should have a target attribute with the value of _blank. Don’t forget the links in the list items.

I need help on these steps

Your code so far

<!DOCTYPE html>
<html>
<html lang="en">
  <body>
  <head>
    <meta charset="utf-8">
    <title>Travel Agency Page</title>
    <meta name="description" content="Travel with ease let us book">
    </body>
    </head>
    <h1>South korea</h1>
  <p>South Korea is a popular destination for tourists because of its rich culture, history, food, and natural beauty. </p>
  <h2>Packages</h2>
  <p>Experience the harmony between traditional and modern culture
Visit Bukchon Hanok Village to see traditional Korean architecture
See the Gyeongbokgung Palace, a stunning palace
Visit Gamcheon Culture Village, a colorful settlement that was once a refugee camp</p>
<body>
<ul>
<li><a href="https://www.freecodecamp.org/learn" target_blank">Group Travels</li></a>
<li><a href="https://www.freecodecamp.org/learn" target_blank">Private Tours</li></a>
  </ul> 
  <h2>Top Itineraries</h2>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target_blank">
    <img "alt" src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg"></a>
  <figcaption>Pizza</figcation>
  </figure>
    <figure>
    <a href="https://www.freecodecamp.org/learn" target_blank">
   <img "alt" src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg"></a>
  <figcaption>beauty</figcation>
  </figure>
  <figure>
    <a href="https://www.freecodecamp.org/learn" "target_blank">
    <img alt src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg"></a>
  <figcaption>Life</figcation>
  </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/133.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Please review how to do a target blank: https://www.w3schools.com/tags/att_a_target.asp

 <a href="https://www.w3schools.com" target="_blank">Visit W3Schools</a> 
1 Like