Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

#16 - 2nd paragraph should introduce packages. I don’t know what I should do differently here. I have increased and decreased the amount of characters but it still doesn’t pass.
#25-Each figure should contain an anchor element. I have completely rewritten the entire code twice and still coming up with issues here.
#26 Each figure should contain a fig caption as a 2nd child. I am starting to get frustrated from looking at other peoples code compared to mine, I don’t understand where I am going wrong.

Your code so far

<!DOCTYPE html>
<html lang ="en">
  <head>
    <meta charset="UTF-8">
    <meta content="Travel Agency Page" property="Travel Agency Page">
    <meta name="description" content="content">
    <title>Travel Agency Page</title>
  </head>
  <body>
    <main>
      <section>
        <h1>Travel Destinations</h1>
        <p>Come fly away to incredible destinations!<p>
          <ol>
            <li>Rome</li>
            <li>Switzerland</li>
            <li>Caribbean Islands</li>
          </ol>
      </section>

       <h2>Packages</h2>
         <p>We offer two packages that include Group Travels and Private Tours, book your trip today! All packages include airfare to selected locations.</p>
          <ul>
            <li><a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels</img></a></li>
            <li><a href="https://www.freecodecamp.com/learn" target="_blank">Private Tours</img></a></li>
          </ul>
     
        <h2>Top Itineraries</h2>
          <ol>
            <li><a href="https://www.freecodecamp.org/learn" target="_blank">Rome Italy</a><a href="https://www.freecodecamp.org/learn" target="_blank"></a><img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="The colosseim in Rome."><figure><figcaption>Colosseim</figcaption></figure></img></li>
    
            <li><a href="https://www.freecodecamp.org/learn" target="_blank">Switzerland</a><a href="https://www.freecodecamp.org/learn" target="_blank"></a><img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="The Swiss Mountain Side"><figure><figcaption>Swiss Mountains</figcaption></figure></img></li>

            <li><a href="https://www.freecodecamp.org/learn" target="_blank">Caribbean Islands</a><a href="https://www.freecodecamp.org/learn" target="_blank"></a><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="Bright Blue Ocean"><figure><figcaption>Deep Blue Ocean</figcaption></figure></img></li>
          </ol>
    </main>
  </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/18.4 Safari/605.1.15

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

second paragraph should introduce packages and you should have an unordered list below your second paragraph (#16,#17) is still flagging. I have literally deleted and retyped twenty times now and cant figure this out! PLEASE HELP :slight_smile:

Your code so far

<!DOCTYPE html>
<html lang ="en">
  <head>
    <meta charset="UTF-8">
    <meta content="Travel Agency Page" property="Travel Agency Page">
    <meta name="description" content="content">
    <title>Travel Agency Page</title>
  </head>
  <body>
      <section>
        <h1>Travel Destinations</h1>
        <p>Come fly away to incredible destinations!<p>
          <ol>
            <li>Rome</li>
            <li>Switzerland</li>
            <li>Caribbean Islands</li>
          </ol>
      </section>
          <h2>Packages</h2>
        <p>We offer an extensive range of holiday solutions to accommodate the needs of all our clients. From daily excursions in the most beautiful cities, to thorough tours of hidden villages and medieval towns to discover Italy's lesser-known sides.<p>
          <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>
        <!-- Picture 1 -->
        <figure>
          <a href="https://www.freecodecamp.org/learn" target="_blank">
           <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="colosseo">
          </a>
          <figcaption>Rome and Center Italy</figcaption> 
        </figure>    
    <!--Picture 2  -->
     <figure>
          <a href="https://www.freecodecamp.org/learn" target="_blank">
           <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="alps">
          </a>
          <figcaption>Nature and National Parks</figcaption> 
        </figure>   
<!-- Picture 3 -->
         <figure>
          <a href="https://www.freecodecamp.org/learn" target="_blank">
           <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="sea">
          </a>
          <figcaption>South Italy and Islands</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/18.4 Safari/605.1.15

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

Welcome to the forum @ty.slankard

The paragraph elements are missing closing tags.

Happy coding

Are the paragraph closing tags <p> and </p>?

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Hi @ty.slankard

I edited your post so the code correctly formats on the forum.

The first one is the opening tag.
The tag name that starts with / is the closing tag.