Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I cant get the group travels and private travels highlighted

Your code so far

<!DOCTYPE html>
<html lang="en">
  <body>
    <head>
      <meta charset="UTF-8">
      <title> "Travel Agency Page"</title>
    </head>
      <h1> Places to visit in the big 2026</h1>
      <p> this is cool places to go and have fun</p>
      <h2>Packages</h2>
     <p> Two packeges to choose from solo and group travel</p>
     <ul>
       <li><a herf="herfhttps://www.freecodecamp.org/learn" target="blank"> Group Travels</li>
       <li><a "herfhttps://www.freecodecamp.org/learn" target="blank"> Private Tours</a></li>
    </ul>
    <h2> Top Itineraries</h2>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="rome">
    <figcaption>having fun in rome</figcaption>
<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="mountains">
    <figcaption>having fun in the middele east</figcaption>
    

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

What do you mean highlighted?

You have massive problems with the a links there, they aren’t even remotely the same. You have spelling and syntax errors.

For reference href stands for Hyperlink Reference, it always helped me write it correctly to think of it full stated.

Please review this HTML Boilerplate lecture. An HTML boilerplate can be used as a starting point for each of your projects to make sure the structure has a solid foundation.

Remember that a complete HTML element includes both a starting tag and a closing tag.

And here’s an example of the correct syntax for an anchor element: HTML a tag

If you’d like to try out an HTML validator until you get more comfortable with HTML, you can find that here: HTML Validator. Just copy/paste your code into the text area and check/fix your code until the validator says your code is okay.