Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

im stuck on the figcaption bit, i dont know where it goes or how

Your code so far

<!DOCTYPE html>
<html lang='en'>
  <head>
    <meta charset='UTF-8'>
    <title>Travel Agency Page</title>
    <meta name='description' content='idk'></meta>
  </head>
  <body>
    <h1>travel</h1>
    <p>yes</p>
    <h2>Packages</h2>
    <p>so many</p>
    <ul>
      <li><a>Group Travels</li></a>
      <li><a>Private Tours</li></a>
    </ul>
    <h2>
      Top Itineraries
    </h2>
    <figure><a></figure></a>
    <figure><a></figure></a>
    <figure><a></figure></a>
  </body> 
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:149.0) Gecko/20100101 Firefox/149.0

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

the instruction that answers your question is:

. You should have at least three figure elements, each containing an anchor element and a figcaption element.

I noticed that you are struggling with the way you write anchor elements.
Do you think you should review how to write these?

(maybe re-do a workshop to remind yourself of it?)

Welcome to the forum @whitewitchmoth024 ,

Here’s an example of how to use figcaption inside the figure element that might help:
: The Figure with Optional Caption element - HTML | MDN

And here you’ll find an example of how to use anchor elements:
HTML a tag

Hope that helps,

Happy coding!