Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

hi, I am stuck on point 2& 3, and i can’t seem to see where I am going wrong or what I’ve done wrong.

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="utf-8"/>
 <meta name="description" content="Travel agency for wealthy clients"/>
<h1 title="Travel in Luxury">Travel in Luxury</h1>
<p>Wealth is a state of living</p>
</head>
<body>
<h2>Packages</h2>
<p>Travel in luxury to experience only what the wealthy can</p>
<div class="Group travel" id="Group Travel">
  <h2>Group Travel</h2>
<ul>
  <li><a href="https://www.freecodecamp.org/learn" target="_blank">Italy</a></li>
  <li><a href="https://www.freecodecamp.org/learn" target="_blank">Alps</a></li>
  <li><a href="https://www.freecodecamp.org/learn" target="_blank">Beach</a></li>
    <h2>Top Itineraries</h2>
    <figure>
      <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Colosseo at night">
      <figcaption>Colosseo at night</figcaption></figure>
      <figure>
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" Alt="Alps mountain range">
        <figcaption>Alps mountain range</figcaption></figure>
      <figure>
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Blue ocean"
        <figcaption>Blue Oceans</figcaption></figure>
        <button class="btn">Enquire Now</button>   
    </div>
<div class="Private Tours" id="Private Tours">
  <h2>Private Tours</h2> 
  <ul>
  <li><a href="https://www.freecodecamp.org/learn" target="_blank">Italy</a></li>
  <li><a href="https://www.freecodecamp.org/learn" target="_blank">Alps</a></li>
  <li><a href="https://www.freecodecamp.org/learn" target="_blank">Beach</a></li>
    <h2>Top Itineraries</h2>
    <figure>
      <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Colosseo at night">
      <figcaption>Colosseo at night</figcaption></figure>
      <figure>
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" Alt="Alps mountain range">
        <figcaption>Alps mountain range</figcaption></figure>
      <figure>
        <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Blue ocean"
        <figcaption>Blue Oceans</figcaption></figure>
        <button class="btn">Enquire Now</button>   
    </div>
  </body>

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

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum @laudevanderhoven!

Please make sure your HTML elements are complete with both opening and closing tags.

You might want to review this theory lecture on the importance of using an HTML Boilerplate to start your projects.

Happy coding!