Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I can’t seem to figure out 28, 31 and 32 I’m not sure where I went wrong

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Travel Agency Page</title>
  <meta name="description" content="seo">
</head>
<body>
<h1> Dubai, France, sweden, Denmark</h1>
<p> Our main travel Destinations are listed above there are so many opportunities when you travel with us </p>
<h2>Packages</h2>
<p> we have 2 precise package options:</p>
<ul>
<li><a href= "https://www.freecodecamp.org/learn" target="_blank">Group Travels</li> </a>
<li><a href="https://www.freecodecamp.org/learn"  target="_blank">Private Tours</li> </a>
</ul>
<h2>Top Itineraries</h2>
<a href="https://en.wikipedia.org/wiki/Boeing_737" target="_blank">
<figure>
  <img src="https://imgs.search.brave.com/ygdH0rHOwgn8hLqHenApeEIO_xCI5VSNK4nl3Ht1f6U/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly90My5m/dGNkbi5uZXQvanBn/LzAwLzU0LzY3LzEy/LzM2MF9GXzU0Njcx/MjgzX0k4VFRuY2w5/aDM5elI2OHNuN3hT/dFdXd1RZeXRJNW5S/LmpwZw" alt="boeing plane" width ="350">
  <figcaption>We provide the best planes</figcaption>
    </figure>
    <a href="https://en.wikipedia.org/wiki/Bali" target="_blank">
    <figure>
  <img src="https://imgs.search.brave.com/JLvZG3YzOFIe66tQnUbgUtV3Qv_M779wsTf5tfKOQhY/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9oYmxp/bWcubW10Y2RuLmNv/bS9jb250ZW50L2h1/YmJsZS9pbWcvYmFs/aS9tbXQvZGVzdGlu/YXRpb24vbV9CYWxp/X2FjdGl2aXR5X2Jl/YWNoX2xfNDAwXzU5/OS5qcGc" alt="bali pic" width="350">
  <figcaption><a href ="https://en.wikipedia.org/wiki/Bali">learn about bali</figcaption></a>
      </figure>
      <a href="https://en.wikipedia.org/wiki/Dubai" target="_blank">
      <figure>
  <img src="https://imgs.search.brave.com/dj4SMxMxHXS9BcYefuIWAj2TkIhBi5a9yr2xVSaWViw/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly9pbWcu/ZnJlZXBpay5jb20v/cHJlbWl1bS1waG90/by9kdWJhaS1jaXR5/LWNlbnRlci1za3ls/aW5lLXVuaXRlZC1h/cmFiLWVtaXJhdGVz/XzEwNDg5NDQtMjY4/ODA4OTkuanBnP3Nl/bXQ9YWlzX2h5YnJp/ZA" alt="dubai" width=350>
  <figcaption><a href ="https://en.wikipedia.org/wiki/Dubai" target="_blank">learn about dubai </figcaption>
   </figure>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Hi there and welcome to our community!

  1. Each figure element should contain an anchor element as its first child.

None of your figure elements have an anchor element as their first child. The first child of each is an img element. Note that the first child is the first element nested within the parent element. You have added anchor elements but they are not nested inside the figure elements. Also they are all missing closing tags.

  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.
  2. Each a element should have a target attribute with the value of _blank. Don’t forget the links in the list items.

Some of your anchor elements have different href attributes. Also, they don’t all have a target attribute.

There are also issues elsewhere in your code, such as mismatched element tags:

<li><a href= "https://www.freecodecamp.org/learn" target="_blank">Group Travels</li> </a>

It may help to run the code through an HTML validator.