Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

The following two items are not checked.
Where is the error?

  1. Each figure element should contain an anchor element as its first child.
  2. Each figure element should contain a figcaption element as its second child.
    用語集

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 webpage">
      <meta content="Travel Italy" property="og:title">
      <meta property="og:type" content="article">
    </head>

    <body>
      <h1>Visiting Italy</h1>
       <p>Culture, history, music and painting. We offer a variety of packages for travelling in Italy.</p>
    
      <h2>Packages</h2>
        <p>We offer several package tours tailored to our customers' needs. From hidden gems to memorable tourist destinations, we can provide a wide variety of itineraries.</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://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="The Colosseum in Italy">
            </a>
            <figcaption>Rome and Center Italy</figcaption>
          </figure>

          <figure>
            <a href="https://www.freecodecamp.org/learn" target="_blank">
              <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="mountain in the Alps">
           </a>
            <figcaption>Nature and National Parks</figcaption>
          </figure>

          <figure>
            <a href="https://www.freecodecamp.org/learn" target="_blank">
            <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Beautiful sea">
            </a>
            <figcaption>South Italy and Islands</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/143.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

double check your closing tags

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.