Help Please This is from Build A Travel Agency Page

Travel Agency Page

<meta name=“description”

content=“Travel Agency Page”>

Destinations

The next great adventure for everyone offered in various packages

<h2>Packages</h2>

<p>We will have the right destination for you</p>

<ul>

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



 <a href="Group Travels">Group Travels</a></li>

  <li><a href="https://www.freecodecamp.org/learn" target="\_blank"<a href="Private Tours">Private Tours</a></li>

</ul>

<h2>Top Itineraries</h2>           

<a href=“https://www.freecodecamp.org/learn

target=“_blank”>

The Next One

Love Architeture?

Great Weather

The Weather is Great

<img src=“https://cdn.freecodecamp.org/curriculum/labs/sea.jpg"alt="A strong Maybe”

  </a>

  <figcaption>Should Be Fun</figcaption>

  </figure>

</body>

Everything is checked as correct except 26.

I am stuck and haven’t been able to correct this, asking for help please

26. Each figure element should contain a figcaption element as its second child.

I am guessing the placement of the figcaption?

Welcome to the forum @Rone1!

Would you please format your code so we can test it?


There are two ways you can format your code to make it easier to read and test:

  1. After you copy/paste your code into the editor, select it by dragging your cursor over it then click the (</>) button in the toolbar to automatically wrap your code in backticks. (You can click on the animated demo image below to enlarge it.)

  1. Manually add three backticks on a new line above your code and on a new line after your code. Note that a backtick is NOT the same as a single quote('). To find the backtick key on your keyboard, see this post.

To see changes to your post as you make them, you can click the (M+) button on the toolbar to bring up the rich text editor:


Happy coding!

Your code is still not formatted for testing. Please review the “how to” post I sent earlier and try again.

Thank you.

I am lost is this the editor?

I am going over what you explained and I am not sure where to paste the code

Okay. I’ll try to walk you through it. Please copy/paste your code into a reply to one of my posts here. Start there.

After that, try editing that post by clicking the pencil icon.
image

Select all of your code and click the </> button on the toolbar here.

That should do it.

To see your changes as you make them, you can click the M+ button on the toolbar.

Hope that helps you understand how to start…

No screenshots, please. We cannot test your code from a screenshot.

Can you click the “Help” button in the challenge you are working on and follow the directions there to create a new topic? Although you really need to learn how to post your formatted code so we can help you. If you send us formatted code and a link to the challenge, you are more likely to be helped.

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="utf-8">
<title>Travel Agency Page</title>
<meta name="description"
content="Travel Agency Page">
</head>
<body>
<h1>Destinations</h1> 
<p>The next great adventure for everyone offered in various packages</p>
    <h2>Packages</h2>
    <p>We will have the right destination for you</p>
    <ul>
      <li><a href="https://www.freecodecamp.org/learn" target="_blank"
  
     <a href="Group Travels">Group Travels</a></li>
      <li><a href="https://www.freecodecamp.org/learn" target="_blank"<a href="Private Tours">Private Tours</a></li>
    </ul>
    <h2>Top Itineraries</h2>           
<figure>
  <a href="https://www.freecodecamp.org/learn"
 target="_blank"> 
  <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="The Next One">
  </a>
  <figcaption>Love Architeture?</figcaption>
  </figure>
<!-- Picture 3 -->
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank"> 
<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Great Weather">
  </a>
  <figcaption>The Weather is Great</figcaption>
  </figure>
<!-- Picture 4 -->
<figure>
  <a href="https://www.freecodecamp.org/learn" target="_blank">
   <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg"alt="A strong Maybe"
      </a>
      <figcaption>Should Be Fun</figcaption>
      </figure>
    </body>
  </html>

It clicked its just I wasn’t allowed to edit my post

Nicely done. Thank you. Now would you send me a link to this challenge?

Take a look at this bit. Is your img element closed properly?

You have another one like that further down.

You also have an issue here. Check your opening anchor tag(?s).

Until you’re comfortable with HTML, you can check your code with this HTML Validator.