Build a Travel Agency Page - Build a Travel Agency Page

Please help with the following items -

  1. One meta element should have a name attribute with value of description and a non-empty content attribute.
  2. Each figure element should contain a figcaption element as its second child.
  3. Each a element should have a target attribute with the value of _blank. Don’t forget the links in the list items.

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="describtion" content="Ireland-Tours"/>
  <title>Travel Agency Page</title>
</head>
<body>
  <h1>Discover Ireland</h1>
  <p>Choose from one of our guided tours to explore the nature, history, architecture and of course, Guinness, that Ireland has to offer</p>

<h2>Packages</h2>
<p>We offer a variety of different guided tours that will show you all that Ireland has to offer. From visiting the Guinness Storehouse in Dublin, to the Cliffs of Moher, to Titanic Belfast and everywhere and everything inbetween.</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" targer=_blank> 
    <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Architecture">
    <figcaption>Visiting the architure of Ireland</figcaption></figure>
 <figure>
    <a href="https://www.freecodecamp.org/learn" targer=_blank> 
    <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Nature">
    <figcaption>Visiting the Nature of Ireland</figcaption></figure>
    <figure>
    <a href="https://www.freecodecamp.org/learn" targer=_blank> 
    <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Oceans">
    <figcaption>Visiting the Oceans of Ireland</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/122.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

What code do you believe satisfies these requirements? How have you gotten stuck debugging?

you gotta check your spelling when you think you have everything right but a test is not passing.
(spelled description)

For this one:

What do you think you did wrong here? (or what do you think they want… do you think you did it? How did you confirm?)

and finally for:

What do you think you can check based on this requirement? (what is the first thing you should confirm you got correct?)

Hi there and welcome to the forum!

It might help you locate your invalid HTML by using an HTML validator like W3C Markup Validation Service. Just click the “Validate by Direct Input” tab, paste your code into the text area, then check/fix errors until the code is clean. (It’s not perfect, but it’s pretty good.)