Debug a Donation Form - Debug a Donation Form

Tell us what’s happening:

I am not able to pass test 11 in this section. This is the task: . You should associate every input element with a label element using the for and id attributes. // tests completed

Donation Form

Donation Form

<label for "name">Full Name:</label>
<input required type="text" name="name" id="name">

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

Donation Amount ($):

<input type="checkbox" name

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 required type="text" name="name" id="name">

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

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


    <input type="checkbox" name="newsletter" id="newsletter">
    
  <label for="submit">  Subscribe </label>
  <input type="submit" value="Send" id="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

you sure that this for is good like that?