Build a Checkout Page - Build a Checkout Page

Tell us what’s happening:

hi! i cant get what am i missing here.
can anybody help me solve it? thank you!!

Your code so far

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <title>Checkout Page</title>
</head>

<body>
  <h1>Checkout</h1>
  <section>
      <h2>Your Cart</h2>
      <img src="https://cdn.freecodecamp.org/curriculum/labs/cube.jpg" alt="nkjbhhb">jbhkbkhbkh</img>
  </section>
  <section>
      <h2>Payment Information</h2>
      <form>
        <label id="card-name" name="card-name" for="card-name">Cardholder Name
          <span aria-hidden="true">*</span>
        </label>
        <input id="card-name" name="card-name" type="text" required/>
        <label id="card-number" name="card-number" for="card-number">Cardholder Number
          <span aria-hidden="true">*</span>
        </label>
        <input id="card-number" name="card-number" type="text" required aria-describedby="card-number-help"/>
        <p id="card-number-help" aria-describedby="card-number-help">Please enter your 16-digit card number without spaces or dashes.</p>
        <label id="card-expiry-date" name="card-expiry-date" for="card-expity-date">Expiry Date
          <span aria-hidden="true">*</span>
        </label>
        <input placeholder="MM/YY" id="expiry-date" name="expiry-date"
        type="text" required/>
        <label id="card-cvv" name="card-cvv" for="card-cvv">CVV
          <span aria-hidden="true">*</span>
        </label>
        <input id="cvv" name="cvv" type="text" required/>
          <button type="submit">Place Your Order</button>
      </form>
  </section>
</body>

</html>

Your browser information:

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

Challenge Information:

Build a Checkout Page - Build a Checkout Page

Please run your code through this HTML validator. Just paste your code in and check/fix until there are no more errors.

If you have questions about the results, please ask.

I do not know if this will fix your problem since I have not look through the entire code, but img tags are self-closing, and do not take any content