Debug a Donation Form - Debug a Donation Form

Tell us what’s happening:

My step 11 is always go wrong plz anybody help me

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

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

    <label for="amount">Donation Amount ($):</label>
    <input id="amount" type="number" name="amount" required>

    <input type="checkbox" name="newsletter">
    <label for="newsletter">Subscribe</label>
 <input id="newsletter" type="submit" value="Send">
  </form>
</body>
</html>

Your browser information:

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

Challenge Information:

Debug a Donation Form - Debug a Donation Form

Hi

You haven’t associated the checkbox input with the subscribe label. There is no label to the send button.


<input type="checkbox" name="newsletter">
    <label for="newsletter">Subscribe</label>
 <input id="newsletter" type="submit" value="Send">