racking my brain on what I am doing wrong. Everything checks except 30 and 31. Do I have something backwards? When I searched on forum I changed a few thing and it still is not clearing. I feel like I have something out of place but I not sure what.
Your code so far
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Travel Agengy Page</title>
</head>
<body>
<h1>Jamaica Getaway</h1>
<p>If you are ready for a trip to paradise, the beautiful beaches, friendly culture, activities and all-inclusive luxury resorts in Jamaica are waiting for you.</p>
<h2>Packages</h2>
<p>The are individual packages all inclusive starting at $399, or group package starting at $899.
<ul>
<li><a> Group Travels</a></li>
<li><a> Private Tours</a></li>
</a></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="Beautiful"></a>
<figcaption>Enjoy the Beautiful Space</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Serenity"></a>
<figcaption>A place to meditate</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Sea"></a>
<figcaption>Sea and opportunity</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/132.0.0.0 Safari/537.36
Challenge Information:
Build a Travel Agency Page - Build a Travel Agency Page
@Ashmatt Read carefully, the instructions is asking:
You should have an unordered list element with two list items. The two list items should have the text Group Travels and Private Tours, respectively. The text of each list item should be enclosed by an anchor element.
You also have an extra closing anchor tag before unordered list closing tag.
Post your latest code here in your reply. Use three back ticks (```) on separate line before and after your code to preform it here correctly