Debug a Donation Form - Debug a Donation Form

Tell us what’s happening:

i have tried my best but it still giving me some error

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>
    
    <label for="name" id="name">Full Name:</label>
    <input type="text" name="name" id="name" required>

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

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

Your browser information:

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

Challenge Information:

Debug a Donation Form - Debug a Donation Form

What is the error?

Which line of code does it refer to?

What have you already tried?

What do the instructions say to do with the submit button?