Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

My ficaption element is in the figure element. But it wont let me go pass 26.

Your code so far

<!DOCTYPE html>
<html lang="en">

 <head>
   <meta charset="utf-8">
   <title> Travel Agency Page</title>
   <meta name="description" content="travel agency">
   <meta name="degency you colued use">
   
</head>
<body>
<h1> travel hster</h1>
<p>we have two pages to chose from</p>
<h2> Packages</h2>
<p>we have two pages to chose from</p>

<ul>
  <li>
  <a href="http://cdn.feecodecamp.org/learn"target="_blank">Group Travels</a></li>
  <li><a href="http://cdn.freecodecamp.org/learn" target="_blank">Private Tours</a></li>
  </ul>
<h2> Top Itineraries</h2>
<ol>
  <li>
<figure>
<a href="http://cdn.feecodecamp.org/learn"target="_blank"></a>
<img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="best colasume">

  
  <figcaption> walk throgh rom.</figcaption>
  </figure>
  </li>
  <li>
<figure>
    <a href="http://cdn.feecodecamp.org/learn"target="_blank"></a>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="alps">
    <figcaption> clime the alps.</figcaption>
</figure>

</li>
<li>
<figure>
    <a href="http://cdn.feecodecamp.org/learn"target="_blank"></a>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="the blue sea">
<figcaption> dive  and see what the sea has to offer.</figcaption>
    </figure>
    
  </ol>
</body>

  </html>

Your browser information:

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

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum @pdagservices

Why are the images not clickable?

Check how elements are nested the in figure element.

The figcaption is the second element in there, in your code it appears as the third element.

Make sure you leave a space beween attributes.

Happy coding

Also, notice you copied the same incorrect href value into all of your anchor elements.