Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Im stuck at travel agency page all circles tick except for a test which says all anchor element should have an href element of https://www.freecodecamp.org/learn. I have gone through my code multiple times all check out. can anyone help me spot the error

Your code so far

<!DOCTYPE html>
  <html lang="en">
    <head>
      <meta charset="UTF-8">
      <title>Travel Agency Page</title>
      <meta name="description" content="Experience Nigeria">
      </head>
      <body>
        <h1>Explore Nigeria</h1>
        <p>Come experience Nigeria from the music to the food to the culture and dressing and nightlife come experience Nigeria with <strong>NIYO TRAVELS</strong> this december in what we nigerians refer to as <em>"Detty december"</em>
        <h2>Packages</h2>
       <p> We offer a large range of sevices from premium up until economy as niyo  travels  is quite affordable and opened to all class of people. For more enquiries please visit
           <a href="https://www.freecodecamp.org/learn"target="_blank">niyotravels</a>. Let us know if you are interested in  </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"><img src="https://i.postimg.cc/Bnykynpt/IMG-1318.jpg" alt=" lagos Nigeria"></a>
        <figcaption>Lagos the heartbeat of nigeria the 1st city 90% people touchdown in Nigeria and the best place to <em>oblee oblee</em></figcaption>
        </figure>
        <figure>
          <a href="https://www.freecodecamp.org/ learn"target="_blank"><img src="https://i.postimg.cc/9Qm7P9xb/IMG-7611.jpg" alt="Nigeria tourist attractions"></a>
          <figcaption>Olumo rock at Ogunstate one og nigerias many tourist attraction enjoy that with niyo travels</figcaption>
          </figure>
          <figure>
            <a href="https://www.freecodecamp.org/learn"target="_blank"><img src="https://i.postimg.cc/K8fsQnm8/IMG-7612.jpg" alt="nightlife in Nigeria"></a>
            <figcaption>Nigerian nightlife is a not miss especially during December.No country comes close</figcaption>
            </figure>
            <p> This just some few reasons why you should contact niyo travels and book your trips with us tight now.at <a href="https://www.freecodecamp.org/learn"target="_blank">bookniyotravel</a>
            </body>
            </html>







     

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.2 Safari/605.1.15

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-travel-agency-page/build-a-travel-agency-page

It seems fine, you are right

I have logged the values programmatically tho, and this is what appear:

https://www.freecodecamp.org/learn
https://www.freecodecamp.org/learn
https://www.freecodecamp.org/learn
https://www.freecodecamp.org/learn
https://www.freecodecamp.org/%20learn
https://www.freecodecamp.org/learn
https://www.freecodecamp.org/learn

one of them has an extra character (a single one, %20 is how a certain character is written to not break urls) that you need to remove

It worked I have completed the challenge now

Thanks you