Build a Travel Agency Page ...31

  1. 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.It is my code:
<!DOCTYPE html>

    <html lang="en">

      <head>

        <title>Travel Agency Page</title>

        <meta charset="utf-8"/>

        <meta description="This is the best Travel Agency" />

        <meta name="description" content="Book your flight now" />

        </head>

        <body>

          <h1>Travel Agency Holliday</h1>

          <p><strong>Travel opportunities</strong> include working holidays, volunteering with organizations</p>

          <h2>Packages</h2>

          <p>Travel packages bundle at least two core travel services—typically accommodation and transportation (flights, trains, or buses)—into a single, pre-arranged, and pre-priced offering.</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="appropriate value"></a>

          <figcaption>Some Text</figcaption>

          </figure>

          

          <figure>

        <a href="https://freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="appropriate value"></a>

          <figcaption>Some Text</figcaption>

          </figure>

    

          <figure>

        <a href="https://freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="appropriate value"></a>

          <figcaption>Some Text</figcaption>

          </figure>

        </body>

      </html>

Double-check your href value, please.

Is: https://freecodecamp.org/learn. The target attribute shows / from copying, but in the code it’s =.

That’s not it. Look again. The links must be exact. Yours is missing something. See it?

www…? World Wide Web…

1 Like

Thanks…and I just wear glasses… :joy:

1 Like