Rone1
May 21, 2026, 9:15pm
1
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”>
Love Architeture?
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.
Rone1
May 21, 2026, 9:27pm
2
I am guessing the placement of the figcaption?
dhess
May 21, 2026, 9:30pm
3
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:
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.)
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!
dhess
May 21, 2026, 9:36pm
5
Your code is still not formatted for testing. Please review the “how to” post I sent earlier and try again.
Thank you.
Rone1
May 21, 2026, 9:38pm
6
I am lost is this the editor?
Rone1
May 21, 2026, 9:39pm
7
I am going over what you explained and I am not sure where to paste the code
dhess
May 21, 2026, 9:39pm
8
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.
dhess
May 21, 2026, 9:45pm
11
After that, try editing that post by clicking the pencil icon.
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.
dhess
May 21, 2026, 9:46pm
12
Hope that helps you understand how to start…
dhess
May 21, 2026, 9:50pm
15
No screenshots, please. We cannot test your code from a screenshot.
dhess
May 21, 2026, 9:54pm
17
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.
Rone1
May 21, 2026, 9:55pm
18
<!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
dhess
May 21, 2026, 9:57pm
19
Nicely done. Thank you. Now would you send me a link to this challenge?
dhess
May 21, 2026, 10:00pm
20
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 .