Build a Travel Agency Page - Build a Travel Agency Page- Step 20-26

Tell us what’s happening:

I’m sorry if this has already been answered, but I’m having issues understanding tests 20, 24, 25 and 26; the child elements, essentially. I’ve looked over the forum and googled around for each line, but I still don’t get what I’m doing wrong. Every edit I do seems to mess up another line of code :[

I apologize again if this one is obvious, I’m still new to posting on forums and HTML in general. Tips definitely appreciated

Your code so far

<!DOCTYPE html>
<html lang="en">
  <!--All other elements go inside here-->
  <head>
    <meta charset="utf-8" />
    <meta
       name="viewport"
       content="width=device-width, initial-scale=1.0" />
    <title>Travel Agency Page</title>
    <link rel="stylesheet" href="./styles.css" />
     <meta name= property="og:descpription" content="Learn all about the wonders of the world in this travel page!">
  </head>
  <body>
<h1> Discover Italy!</h1>
<p> Art, folklore, food, nature, and more. Choose among our wide selection of guided tours and excursions, and live an unforgettable experience exploring Italy. </p>
<h2> Packages </h2>
<p>We offer an extensive range of holiday solutions to accommodate the needs of all our clients. From daily excursions in the most beautiful cities, to thorough tours of hidden villages and medieval towns to discover Italy's lesser-known sides.</p>
<ul>
<li> <a href="https://www.freecodecamp.org/learn" target="_blank"> Group Travel </a> </li>
<li> <a href="https://www.freecodecamp.org/learn" target="_blank"> Private Tours </a> </li>
</ul>
<h2> Top Itineraries</h2>
  </body>
</html>
<fig>
<a href="https://www.freecodecamp.org/learn" target="_blank">
  <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="Rome and Center Italy">
  </a> 
  <figcaption> Rome and Center Italy </figcation>
</fig>

<fig>
<a href="https://www.freecodecamp.org/learn" target="_blank">
 <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Nature and Natural Parks"> </a>
<figcaption> Nature and Natural Parks</figcation>
</fig>

  <fig>
<a href="https://www.freecodecamp.org/learn" target="_blank">
 <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="South Italy and Islands">
 </a>
<figcaption> South Italy and Islands</figcation>
</fig>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0) Gecko/20100101 Firefox/144.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

https://www.freecodecamp.org/learn/full-stack-developer/lab-travel-agency-page/build-a-travel-agency-page

Hi there and welcome to the forum!

Well, let’s start with this:

For correct examples check this source:
https://www.w3schools.com/tags/tag_meta.asp

And this, you need:
Group Travels

You have:
Group Travel

Thank you! I can’t believe I missed a typo ^^”

Is this better like this?:

<meta name= "description" property="og:descpription" content="Learn all about the wonders of the world in this travel page!">

1 Like

Is there a space in the examples?

Oh! There isn’t, let me fix that :]

1 Like

<meta name=“description” property=“og:descpription”

So this is correct?

After fixing the problem, run the tests to see if it is correct now or not

1 Like

It was, thank you :smiley: ! That leaves the element issues

1 Like

What is this tag? There is no such tag in HTML.

And this:

A small typo

… I feel so foolish :pensive_face:

I fixed it and it worked like a charm! Thank you so much, I’m sorry to bother like that ^^”

1 Like

Errare humanum est.
You’re welcome and happy coding!

3 Likes