Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hey, I’ve already looked up similar questions to mine, but I still can’t figure out requirement #31, let me know if you see what’s wrong, thanks!

Your code so far

<!DOCTYPE html>
<html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Travel With Isabelle</title>
  <meta name="description"content="Travel With Isabelle, is a reliable Travel Agency that specializes in affordable travel options.">
</head>
<body>
  <h1>Travel With Isabelle!</h1>
  <p>Unfortunatly Travel with Isabelle only has one destination, since Isabelle is too poor to leave her state :(</p>  
  <h2>Packages</h2>
<p> Travel With Isabelle offers a once in a lifetime opportunity to explore Wisconsin; the most exciting place in the world!
  <ul>
   <li><a href="https://freecodecamp.org/learn" target="_blank">Group Travels</a></li>
    <li><a href="https://freecodecamp.org/learn" target="_blank">Private Tours</a></li>
  </ul>
<h2>Top Itineraries</h2>
<figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Roman architecture" href="https://www.freecodecamp.org/learn" target="_blank"></img></a>
  <figcaption>Yeah... Isabelle will not travel here...</figcaption>
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Swiss Alps" href=
  <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Carribean Dream" href="https://www.freecodecamp.org/learn" target="_blank"></img></a>
  <figcaption>Or here.</figcaption>
  </figure>
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Gurl." href="https://www.freecodecamp.org/learn" target="_blank"></img></a>
    <figcaption>The closest you will get to this, is lake Winnebago.</figcaption>
    </figure>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi

You have an issue with duplicate / incomplete code here:

<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Swiss Alps" href=

You don’t have closing anchor tags on all. You have put href attributes on some images. I suggest you go through stories 12 and 13 again and check everything is correct.

Image elements are self closing so you don’t need a closing img element.

Perfect, Thank you!!