Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

number 31. I cannot find my error or what I’m doing wrong…please help

Your code so far

<!doctype html>
<html lang="en">
 <head>
 <meta charset="UTF-8">
 <title>Travel Agency Page</title>
 <meta
 name="description"
 content="book flights">
</head>
<body>
<h1>Wisconsin</h1>
<p>There are many sights to see</p>
<h2>Packages</h2>
<p>2 different packages to choose from</p>
  <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://freecodecamp.org/learn" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="colloseum"></a>
<figcaption>state capitol in ruins</figcaption> in Wisconsin
</figure>
<figure>
 <a href="https://freecodecamp.org/learn" target="_blank">
 <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="sea with boat"></a>
 <figcaption>the many great lakes</figcaption>of Wisconsin
 </figure>
<figure>
 <a href="https://freecodecamp.org/learn" target="_blank">
 <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="mountian range"></a>
 Wisconsins <figcaption>wonderful nature</figcaption>
 </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/139.0.0.0 Safari/537.36 Edg/139.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

31. 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.

this is the only one that doesn’t pass

Each a element should have an href attribute with the value of https://www.freecodecamp.org/learn.

Do these match?

double check which value you are giving and which value is requested

OMG thank you!! I cannot believe I over looked the simple “www.”. I have been stuck on this for hours now