hello i have issues with:
19 - saying both items should contain an anchor element, but they do already
22 - Says h2 element after unordered list, the h2 element is presents also
26 - says there should be a figcaption in each figure element, that is also present
28 - says each a element in the figure element should contain an image, but they do already
31 &32 - says each a element should have an href and target attribute with respective value, and they all do…so i need help resolving this
Hey there,
Please update the message to include your code.
When you enter a code, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').
Please post your code and a link to the challenge.
When you enter a code block into a forum post, please precede it with three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add the backticks.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The Jude Travel Agency</title>
<meta name="description" content="this is a travel a site for booking flights">
</head>
<body>
<h1>The Judes Travel Agency</h1>
<p>Welcome to TJT Agency, where you can book flights and make room reservations in one place</p>
<h2>Packages</h2>
<p>We have various packages to suit youyr needs and budget</p>
<ul>
<li><a target="_blank" href="https://www.freecodecamp.org/learn">Group Travels</a></li>
<li><a target="_blank" href="https://www.freecodecamp.org/learn">Private Tours<a/></li>
</ul>
<h2>Top Itineraries</h2>
<figure>
<a target="_blank" href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="colosseo at night"></a>
<figcaption>Damaged Colosseo at night</figcaption>
</figure>
<figure>
<a target="_blank" href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="alps with bright skies"></a>
<figcaption>Alps with a beautiful horizon</figcaption>
</figure>
<figure>
<a target="_blank" href="https://www.freecodecamp.org/learn"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="sea with waves"></a>
<figcaption>A clear blue sea</figcaption>
</figure>
</body>
</html>
```
Share a link to the challenge.
Better examine them and make sure everything looks correct with them.
you can confirm, the code is up there
are you double checking that everything is correct?
thank you so much, that little error corrected all the bug and ive been able to advance.
