Build an ravel Agency page: 19&26 Trouble

OMG!!! MY BRAIN IS SIMMERING!!!

Here is my code for 19: Both your list items should contain an anchor element.

<ul>
  <li>
    <a target="_blank" href="https://www.freecodecamp.org/learn" alt="IDK Wha I'm doing...">Group Travels</a>
  <strong>1-Day Expedition</strong> – $199 (Basic tour of key battle sites + memorial)</li>
  <li>
    <a target="_blank" href="https://www.freecodecamp.org/learn"alt="No Ants anymore.">Private Tours</a> 
  <strong>VIP "Shadow Monarch" Package</strong> – $999 (All-inclusive with scenic Jeju tour, battle simulations,exclusive merch, private guide, luxury stay, and collector’s edition souvenirs)</li>
<!--figure two-->
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Some Alps"><br>~~~</a>
    <figcaption>Fresh air...mostly.</figcaption>
  </figure>
</ul> 

Here is my code for 26: Each figure element should contain a figcaption element as its second child.

<!--figure one-->
  <figure>
    <a target="_blank" href="https://www.freecodecamp.org/learn">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="No Giant murder bugs here."><br><~~~</a><br>
    <figcaption>Not Jeju.</figcaption>
  </figure>

OMG What am I doing wrong? TT^TT Please Help!!!

What is the child of an element?

for 26 it’s the a & figcaption

do you have other li?

you should post all your code

<!DOCTYPE html>  
<html lang="en">

<head>
    <meta charset="utf-8"> Travel Agency Page
    <meta head="Travel Agency Page">
    <meta name="description" content="Solo Leveling Jeju travel">
    </meta>
      <title>Offered by: Hunter’s Dream Travel Agency</title> 
</head> 
<body>
  <h1> Jeju Island – Solo Leveling Expedition 🌋🐜</h1>
  <p>Offered by: Hunter’s Dream Travel Agency</p>
  <!--figure one-->
  <figure>
    <a target="_blank" href="https://www.freecodecamp.org/learn">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="No Giant murder bugs here."><br><~~~</a><br>
    <figcaption>Not Jeju.</figcaption>
  </figure>
<h2>Packages</h2>
  <p>Dare to step into the legendary battleground of <strong>Jeju Island</strong>, where history’s fiercest battle between<strong> S-rank Hunters and the monstrous Ant King </strong>took place! Once an infested wasteland ruled by terrifying <strong>Jeju Ants</strong>, this island has now been reclaimed and is ready for the bravest travelers seeking adventure, history, and breathtaking landscapes.</p>
<ul>
  <li>
    <a target="_blank" href="https://www.freecodecamp.org/learn" alt="IDK Wha I'm doing...">Group Travels</a>
  <strong>1-Day Expedition</strong> – $199 (Basic tour of key battle sites + memorial)</li>
  <li>
    <a target="_blank" href="https://www.freecodecamp.org/learn" alt="No Ants anymore.">Private Tours</a> 
  <strong>VIP "Shadow Monarch" Package</strong> – $999 (All-inclusive with scenic Jeju tour, battle simulations,exclusive merch, private guide, luxury stay, and collector’s edition souvenirs)</li>
<!--figure two-->
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Some Alps"><br>~~~</a>
    <figcaption>Fresh air...mostly.</figcaption>
  </figure>
</ul> 
 
<h2>Top Itineraries</h2>
<!--figure three-->
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="*Insert the Ocean*"><br>~~~</a>
    <figcaption>Some water.</figcaption> 
  </figure>
<ol>
  <li>
    <strong>Ant King’s Last Stand </strong>– Walk through the very battlefield where Sung    
     <a href="https://www.freecodecamp.org/learn" target="_blank">Jinwoo </a>vanquished the Ant King and his army.</li>
  <li><strong>Hunter Memorial Site</strong> – Pay respects to the fallen S-rank hunters who fought to 
    <a href="https://www.freecodecamp.org/learn" target="_blank">reclaim Jeju</a> in past raids.</li>
  <li><strong>Shadow Monarch’s Path</strong> – Visit key locations where the 
    <a href="https://www.freecodecamp.org/learn" target="_blank">strongest hunter</a> in history left his mark.</li> 
  <li><strong>Scenic Jeju</strong> – After reliving the legendary battles, unwind with Jeju’s pristine beaches, waterfalls, and 
    <a href="https://www.freecodecamp.org/learn" target="_blank">Hallasan Mountain.</a></li>
</ol>
  </body> 
</html>  

you need to move the anchor element to be the first thing inside the li

Like this?

<h2>Top Itineraries</h2>
<!--figure three-->
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="*Insert the Ocean*"><br>~~~</a>
    <figcaption>Some water.</figcaption> 
  </figure>
<ol>
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Ant King’s Last Stand </strong>–</a> Walk through the very battlefield where Sung    
    Jinwoo vanquished the Ant King and his army.</li>
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Hunter Memorial Site</strong> – </a>Pay respects to the fallen S-rank hunters who fought to 
    reclaim Jeju in past raids.</li>
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Shadow Monarch’s Path</strong> – </a>Visit key locations where the 
    strongest hunter in history left his mark.</li> 
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Scenic Jeju</strong> – </a>After reliving the legendary battles, unwind with Jeju’s pristine beaches, waterfalls, and 
    Hallasan Mountain.</li>
</ol>
<h2>Top Itineraries</h2>
<!--figure three-->
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="*Insert the Ocean*"><br>~~~</a>
    <figcaption>Some water.</figcaption> 
  </figure>
<ol>
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Ant King’s Last Stand </strong>–</a> Walk through the very battlefield where Sung    
    Jinwoo vanquished the Ant King and his army.</li>
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Hunter Memorial Site</strong> – </a>Pay respects to the fallen S-rank hunters who fought to 
    reclaim Jeju in past raids.</li>
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Shadow Monarch’s Path</strong> – </a>Visit key locations where the 
    strongest hunter in history left his mark.</li> 
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Scenic Jeju</strong> – </a>After reliving the legendary battles, unwind with Jeju’s pristine beaches, waterfalls, and 
    Hallasan Mountain.</li>
</ol>

what do the tests say now?

It’s still not accepting it :frowning:

please share again your complete code

<!DOCTYPE html>  
<html lang="en">

<head>
    <meta charset="utf-8"> Travel Agency Page
    <meta head="Travel Agency Page">
    <meta name="description" content="Solo Leveling Jeju travel">
    </meta>
      <title>Offered by: Hunter’s Dream Travel Agency</title> 
</head> 
<body>
  <h1> Jeju Island – Solo Leveling Expedition 🌋🐜</h1>
  <p>Offered by: Hunter’s Dream Travel Agency</p>
  <!--figure one-->
  <figure>
    <a target="_blank" href="https://www.freecodecamp.org/learn">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="No Giant murder bugs here."><br><~~~</a><br>
    <figcaption>Not Jeju.</figcaption>
  </figure>
<h2>Packages</h2>
  <p>Dare to step into the legendary battleground of <strong>Jeju Island</strong>, where history’s fiercest battle between<strong> S-rank Hunters and the monstrous Ant King </strong>took place! Once an infested wasteland ruled by terrifying <strong>Jeju Ants</strong>, this island has now been reclaimed and is ready for the bravest travelers seeking adventure, history, and breathtaking landscapes.</p>
<ul>
  <li>
    <a target="_blank" href="https://www.freecodecamp.org/learn" alt="IDK Wha I'm doing...">Group Travels</a>
      <strong>1-Day Expedition</strong> – $199 (Basic tour of key battle sites + memorial)</li>
  <li>
    <a target="_blank" href="https://www.freecodecamp.org/learn" alt="No Ants anymore.">Private Tours</a> 
      <strong>VIP "Shadow Monarch" Package</strong> – $999 (All-inclusive with scenic Jeju tour, battle simulations,exclusive merch, private guide, luxury stay, and collector’s edition souvenirs)</li>
<!--figure two-->
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="Some Alps"><br>~~~</a>
    <figcaption>Fresh air...mostly.</figcaption>
  </figure>
</ul> 
 
<h2>Top Itineraries</h2>
<!--figure three-->
  <figure>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="*Insert the Ocean*"><br>~~~</a>
    <figcaption>Some water.</figcaption> 
  </figure>
<ol>
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Ant King’s Last Stand </strong>–</a> Walk through the very battlefield where Sung    
    Jinwoo vanquished the Ant King and his army.</li>
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Hunter Memorial Site</strong> – </a>Pay respects to the fallen S-rank hunters who fought to 
    reclaim Jeju in past raids.</li>
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Shadow Monarch’s Path</strong> – </a>Visit key locations where the 
    strongest hunter in history left his mark.</li> 
  <li>
    <a href="https://www.freecodecamp.org/learn" target="_blank">
      <strong>Scenic Jeju</strong> – </a>After reliving the legendary battles, unwind with Jeju’s pristine beaches, waterfalls, and 
    Hallasan Mountain.</li>
</ol>
  </body> 
</html>  

they should include only the a element, not other children

Thank you! That worked for 19 :smile:

It was all the extra code :smiley: Thanks!!