Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I cant get around the test 28, i dont know where to put my img

Your code so far

<!DOCTYPE html> 
<html lang="en">
  <head> 
     <meta name="description" content="Check our newest destinations" />
    <meta charset="utf-8">
    <title> Travel Agency Page </title>
  </head>
  <body> 
    <h1> Our travel destinations </h1>
      <p>With our agency you will be able to fly to countless destinations</p>
    <h2> Packages </h2>
    <p> We count with various passages for our customers</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">Argentina</a>
      <figcaption> Argentina </figcaption>
      <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/640px-Flag_of_Argentina.svg.png" alt=" bandera Argentina">
      
    </figure>
    <figure> 
      <a href="https://www.freecodecamp.org/learn" target="_blank">Bolivia</a> <figcaption> Bolivia </figcaption>
      <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/640px-Flag_of_Argentina.svg.png" alt="bandera Bolivia">
    </figure>
    <figure> 
      <a href="https://www.freecodecamp.org/learn" target="_blank" >Rusia</a>
      <figcaption> Rusia </figcaption>
      <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Flag_of_Argentina.svg/640px-Flag_of_Argentina.svg.png" alt="bandera Rusia">
    </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/132.0.0.0 Safari/537.36 OPR/117.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi. Instruction 12 states each anchor element should have an image element. The images should be clickable. You need to move the image elements inside your three anchor tags.


So it should look like this?

Hi. You need to keep the opening and closing tags on the img and anchor elements as it was. Reset the step (saving your code separately so you don’t lose it). All you need to do is cut and paste the img elements inside each of the a tags. Apart from the tags you had it right as the img element has to be inside the anchor tags.

Thanks, i finally solve it, thanks you dude

1 Like