Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

Hello. I have looked over my code numerous times. I can not see why I keep getting #30 and #32 wrong.

Your code so far

<!DOCTYPE html>
  <html lang="en">
    <head>
      <meta charset="utf-8"> 
<title>Travel Agency Page</title>
<meta name="description" content="Provides help and tip to help customers book and plan trips"
</head>
<body>
  <h1>Keith's Travel Helpers</h1>
    <p>We are not only booking trips to all 50 states, but also to U.S. Territories in the Caribbean, Mexico, and South America.</p>
    <h2>Packages</h2>
    <p>We are offering 3-5 day trips to anywhere in the US starting at $250 per person. To the Caribbean, we offer 3-5 day trips starting at $300 per person. For trips to Mexico and South America, we are offering trips starting at $400 per person.</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"</a>
  <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="picture of colosseum">
  <figcaption>Colosseum in Greece</figcaption>
    </figure>
    <figure>
      <a href="https://www.freecodecamp.org/learn" target="_blank"</a>"
<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Picture of the French Alps">
<figcaption>French Alps</figcaption>
      </figure>
      <figure>
        <a href="https://www.freecodecamp.org/learn" target="_blank"</a>
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="picture of sea in the caribbean"> 
        <figcaption>Sea</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/151.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-travel-agency-page/669e2f60e83c011754f711f9.md at main · freeCodeCamp/freeCodeCamp · GitHub

Hi @SixM,

Do your a elements each contain an img element? Are your a element opening tags closed properly? The fCC editor is trying to help you locate errors by making the opening brackets red for the elements with issues. Look for that to see where you need to make changes.

Happy coding