Debug a Donation Form - Debug a Donation Form

Tell us what’s happening:

Please help with step 11, don’t know where I am going wrong.

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Donation Form</title>
</head>
<body>
  <h1>Donation Form</h1>
  <form>
    
    Full Name:
    <label for="name">Full Name:</label>
    <input required id="name"type="text"name="name"></label>

    Email Address:
    <label for="email">Email Address:</label>
    <input required id="email"type="email"name="email">

    Donation Amount ($):
    <label for="number">Donation Amount($):</label>
    <input required id="number"type="amount"name="amount">       </label>
    
    <input type="checkbox"name="newsletter"></label>
    Subscribe
     <label for="submit">Subscribe</label>
    <input type="submit" value="Send"></label>
  </form>
</body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36

Challenge Information:

Debug a Donation Form - Debug a Donation Form

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-debug-donation-form/690ddb5e6ee94eb73ed172b0.md at main · freeCodeCamp/freeCodeCamp · GitHub

you have many closing tags that do not have a matching oepning tag, why is that?

do you have an element with id of submit? this one is not associated

and where is the label for this one?