Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

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

Hi there. Your anchor elements aren’t have href attribute and the link value. Also remove space before anchor text.

okay so I put the a element with target in all of them and it still is not correct. should the a element be outside of the <li /li>?

@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

Tell us what’s happening:

okay here is my new code and I added the learn and target but it is still not checking off

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 href="https://www.freecodecamp.org/learn" target="_blank"> Group Travels</a></li>
      <li><a href="https://www.freecodecamp.org/learn target="_blank> 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="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="Meditation"></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

okay I reposted my code so far and I am not sure still

check that you have all the quotes in the right place

I have merged your two topics, please do not create multiple topics for the same challenge