Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I am unable to figure out how to “wrap text” as indicated here:
for 20. The anchor element of your first list item should wrap the text Group Travels.
Failed: 21. The anchor element of your second list item should wrap the text Private Tours.
Please advise.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
   <meta charset="UTF-8"/>
   <meta name="description" Content="Travel advice"> 
   <title>Travel Agency Page</title>
  </head>
<body>
<h1>Bear Pursuit Hikes</h1>
<p>Get that bear! All the <strong>thrills</strong> and the gratuitous <em>danger</em>!</p>
<h2>Packages</h2>
<p>Select your own personalized package from our many choices.Whether your wheelhouse is bear scat or bear hair, we've got you covered.</p>
<ul>
  <li> <a href="https://www.freecodecamp.org/learn" alt="Mother bear and cubs" target="_blank">Bear Scat Search Explorer tour </a> Group Travels</li>
    
  <li> <a href="https://www.freecodecamp.org/learn" alt="Bear hair" target="_blank">  Bear Hair Sticky Roller Tour</a> Private Tours</li>
  </ul>
  <h2>Top Itineraries</h2>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"> 
  <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRctq_LY2_zQa0q-MjmwyFD8h7Xm7IfwqUmt0phGH2u2g&s" alt=Mother bear and cubs"  >
  </a> 
<figcaption>Mama Bear and Cubs</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"> 
  <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCmpr-TnGEaXgDELxD9z3FUeermf4ce4vU-Q&s" alt="Polar bear family">
  </a>
<figcaption>Dyed Hair Bears Beware</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank"> 
  <img src="https://upload.wikimedia.org/wikipedia/commons/9/9e/Ours_brun_parcanimalierpyrenees_1.jpg" alt="Large lone bear"   width="300">
  </a>
<figcaption>Lone  Bear Beware</figcaption>
</figure>

</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

I would look back at the Cat Photo App for an example of how to use anchor elements to ‘wrap text’.