Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

hiii i’m stuck on step 30 and 31, what could be wrong

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <meta name="description" content="A concise summary of what this page is about.">
 <title>Travel Agency Page</title>
  </head>
  <body>
<h1>INDIA</h1>
<p>The culture, art, folklore, people, history, temples, mountains, holy rivers and the nature everything is worth your time.</p>
<h2>Packages</h2>
<p>We offer an extensive range of holiday solutions to accommodate the needs of all our clients. From daily excursions in the most beautiful cities, to thorough tours of hidden villages and medieval towns to discover India's lesser-known sides.</p>
<ul>
  <li><a href="#">Group Travels</a></li>
  <li><a href="#">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="City Tours">
  </a>
  <figcaption>Discover historic cities and culture.</figcaption>
</figure>

<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Mountain Views">
  </a>
  <figcaption>Experience breathtaking views.</figcaption>
</figure>

<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Beach Getaway">
  </a>
  <figcaption>Relax on sunny beaches with clear waters.</figcaption>
</figure>
  </body>
  </html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) 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

are you sure? could it be step 31 and 32?

there is written “Don’t forget the links in the list items.”, did you check those?

yeah my mistake its 31 and 32 but i’ve checked every thing i don’t understnd what could possibly go wrong

The user story says the following

Each a element should have an href attribute with the value of https://www.freecodecamp.org/learn . Don’t forget the links in the list items.

When I look at your code all I see are hashes

then you have this user story

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

when I look at your code again, I don’t see any target attributes here

that is what this hint was about

once you fix those things, then it passes

hope that helps