Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I don’t understand what I have wrong here I have looked over this for a hour

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8"> 
    <meta name="description"
    content="we have the best travel packages around"> 
    <title>Travel Agency Page</title>
    </head>
    <body>
    <h1>Travel To Beautiful Tennessee!</h1>
  <p>We have a variety of travel packages catered to fit most of your travel needs.</p>
    <h2>Packages</h2>
    <p>our packages beat the rest</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>
     <figure>
       <a href="freecodecamp.org/learn" target="_blank">
      <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="ancient architecture"></a>
      <figcaption>The Colloseum in Rome</figcaption>
      </figure>
      <figure>
        <a href="freecodecamp.org/learn" target="_blank">
        <img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="beautiful mountains"></a>
        <figcaption>The Alps</figcaption>
        </figure>
        <figure>
          <a href="freecodecamp.org/learn" target="_blank">
          <img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="gorgeous oceans"></a>
          <figcaption>beautiful oceans</figcaption>
          </figure>
        </body>
        </head>
        </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.5 Safari/605.1.15

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-travel-agency-page/build-a-travel-agency-page

nevermind im dumb. lol.

No worries, it happens to all of us. I was just looking over the code too, noticed there’s a stray closing </head> tag at the very bottom, after the </body>. That might be causing some confusion for the browser. Always a bit of a puzzle getting things lined up right!

Finding the problem in your code yourself is the opposite of dumb

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.