Building a Travel Agency Page

Hi,

Could anybody tell me what exactly am I doing wrong?

<!DOCTYPE html>

<head>
<html lang="en">
    <meta charset="UTF-8"><title> Travel Agency Page</title>
    <meta name="description" content="This is an example of a website">
    </head>
    <body>
    <h1>Discover Cape Town</h1>
    <p>Nothing beats a JET2 holiday to Cape Town to experience sandy blue flag beaches, beautiful scenery and just ultimately meeting LEKKER people!<p>
      <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 Cape Town's lesser-known sides.<p>
        <ul>
          <li><a href="https://www.freecodecamp.org/learn"target=_"blank">Group Travels</a>

       <li><a href="https://www.freecodecamp.org/learn"target=_"blank">Private Tours</a>
       </ul>

<h2>Top Itineraries</h2>
<figure>
  <a href="https://www.freecodecamp.org/learn"target=_"blank">
  <img src="https://i.redd.it/eztf9a5wgt291.jpg" alt="Cable Car">
  </a>
  <figcaption>Table Mountain</figcaption>

<figure>
  <a href="https://www.freecodecamp.org/learn"target=_"blank">
  <img src="https://th.bing.com/th/id/OIP.rUuupUUVkU5WDNgDAPwL-wHaEt?w=230&h=180&c=7&r=0&o=7&dpr=1.3&pid=1.7&rm=3" alt="Blue Beaches">
  </a>
  <figcaption>Beaches</figcaption>
 <figure>
  <a href="https://www.freecodecamp.org/learn"target=_"blank">
  <img src="https://th.bing.com/th/id/OIP.OMjkD-ChPQ9MXcNAwnndFAHaE7?w=285&h=189&c=7&r=0&o=7&dpr=1.3&pid=1.7&rm=3" alt="Scenery">
  </a>
  <figcaption>Kirstenbosch</figcaption>

</body>

Hi there and welcome back to the forum!

I’ve edited your post to improve the readability of the code. When you enter a code block into a forum post, please precede it with three backticks to make it easier to read.

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

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

Also please tell us what errors did you get?

can you share the link to this project please?

I see a lot of start tags with no end tags…and one end tag with no start tag. Remember, most HTML elements require both an opening tag and a closing tag.

Attribute/value pairs should always be separated by a space.

In the future, when you need help with a challenge, please click the Get Help > Ask for Help button, which is displayed on the challenge after you have attempted to submit your solution at least three times.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.