Build a Travel Agency Page - Build a Travel Agency Page step 31 and 32

Tell us what’s happening:

I have ran the tests and am good on everything but number 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. And 32 Each a element should have a target attribute with the value of _blank. Don’t forget the links in the list items.

Ive doubled and triple checked the code and can’t see where my mistake was made.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="description" content="text">
    <title>Get Going Inc.</title>
  </head>
  <body>
    <h1>Visiting Iceland</h1>
    <p>Every day in Iceland holds the promise of adventure. The rugged terrain is an outdoor enthusiast's dream, from towering mountains and active volcanoes to sprawling glaciers, rivers, hot springs, and caves. But dont worry—its also a warm and welcoming land for the rest of us!</p>
    <h2>Packages</h2>
    <p>We offer a variety of options to explore Iceland. Whether you want to hike through mountains and glaciers, or relax in one of the many hot springs, or even explore a volcano. There are tons of things to do in Iceland for anyone of all ages.</p>
    <ul>
      <li><a href="https://www.freecodecamp.org">Group Travels</a>
      <li><a href="https://www.freecodecamp.org">Private Tours</a>
      </ul>
      <h2>Top Itineraries</h2>
      <p>
        <figure>
          <a href="https://www.freecodecamp.org/learn" target="_blank">
          <img src="https://i.natgeofe.com/n/86226a60-5559-4b7e-8b74-c1869ed4238f/Iceland-mount-Kirkjufell-aurora.jpg" alt="A photo of a mountain and the aurora borealis" 
          </img>
          </a>
            <figcaption>Stand under the stars and gaze at the Aurora Borealis</figcaption>
      </p>
      <p>
        <figure>
          <a href="https://www.freecodecamp.org/learn" target="_blank">
          <img src="https://images.ctfassets.net/w65k7w0nsb8q/4egTHqIvc6A9cNgAILlcyK/ef94101278f85c96a659e6bd7899729e/Bluelagoon-meta.jpg" alt="A photo of 3 people enjoying a hot spring" 
          </img>
          </a>
          <figcaption>Take in the beauty of one of our many hot springs and come relax</figcaption>
          </figure>
          </p>
          <figure>
            <a href="https://www.freecodecamp.org/learn" target="_blank">
            <img src="https://media.istockphoto.com/id/1629533738/photo/godafoss-waterfall-flowing-with-colorful-sunset-sky-and-male-tourist-standing-on-cliff-in.jpg?s=612x612&w=0&k=20&c=oKRdh9yZhabi7PLMAalqQa2GrV_DcwrViH38cxCGGo0=" alt="A photo of a man staring at a waterfall"
            </img>
            </a>
            <figcaption> Look out at amazement at all nature has to offer with our spectacular views of waterfalls!</figcaption>
            </figure>
            </p>
 </body>
  </html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) 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

Did you forget to check the links in the list items?

I have only 2 list items and they both have links, unless I’m missing something

but do they have the right href value?

But

Nice I missed that part, thank you. And I realized what I was doing wrong for the 31st part, I was linking the list items with the href=https://www.freecodecamp.org and was forgetting the /learn at the end of those links