Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I am stuck on 31 Each a element should have an href attribute with the value of https://www.freecodecamp.org/learn. I dont know where im messing up.

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 page"/> 
    </head>
    <body>
  <h1>Amusement Parks</h1>
  <p>differrent rides</p>
  <h2>Packages</h2>
  <p>Hotel, park tickets and food. 
    Park tickets and food.</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://freecodecamp.org/cutticulum/labs/Texas Giant.jpg" alt="Texas Giant">
  </a>
  <figcaption>Fun Rides</figcaption>
</figure>
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/curriculum/labs/Park food.jpg" alt="Food">
  </a>
  <figcaption>food</figcaption>
</figure>
<figure>
  <a href="https://freecodecamp.org/learn" target="_blank">
    <img src="https://cdn.freecodecamp.org/crriculum/labs/amusement parks.jpg" alt="park map">
  </a>
  <figcaption>park map</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/146.0.0.0 Safari/537.36 Edg/146.0.0.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hey @sassy1985 and welcome to the FCC Community!

Pay close attention, at the last link, and see whether it matches exactly: https://www.freecodecamp.org/learn. I think you’ll see what I mean right away.

Happy Coding!

Hi @sassy1985 ,

Also, spaces are not allowed in an img element’s src attribute. Use the ones provided in the instructions.

This is not causing the tests to fail since that’s probably not being tested, but you should be aware of it.

Happy coding!