Build a Travel Agency Page - Build a Travel Agency Page

Tell us what’s happening:

I am having trouble with 31 and 32, I am not understanding how my “a” value isn’t already set in 31 and my target=_“blank” is set for 32. So any help understanding this would be appreciated. Thanks.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
<meta charset="utf-8">
<meta name="description"
content="we help people get where they want to">
<title>Travel agency Page</title>
    </head>
    <body>
<h1> Travel Opportunities</h1>
<p> we have various packages to help anyone get where they want, when they want. And we want to help you get there.</p>
<h2>Packages</h2>
<p>We have three differetn travels packages world wide</p>
<ul>
<li><a href="#">Group Travels</a>
<li><a href="#">Private Tours</a>
  </ul>
  <h2>Top Itineraries</h2>
  <figure>
  <a href="ttps://www.freecodecamp.org/learn" target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="visiting rome"></a>
  <figcaption>some coloseum</figcaption>
  </figure>
  <figure>
  <a href="ttps://www.freecodecamp.org/learn" target="_blank"><img src ="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="visiting mountains"></a>
  <figcaption>some Mountains</figcaption>
  </figure>
  <figure>
  <a href="ttps://www.freecodecamp.org/learn"target="_blank"><img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="visiting ocean"></a>
  <figcaption>some Ocean</figcaption>
  </figure>
      </body>
    </html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Agency Page - Build a Travel Agency Page

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-travel-agency-page/669e2f60e83c011754f711f9.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @steveirrfwor2777

These two anchor elements do not have the correct href value or include the target attribute.

Include a space between attributes.

Some of the href values are missing a letter at the start of the value.

Happy coding