Debug a Donation Form - Debug a Donation Form

Tell us what’s happening:

Every question is well answered why am i still getting no result please fix this

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

  <label for="email">  Email Address: </label>

    <input id="email" type="email" name="email" required>

    <label for="donation">Donation Amount ($):</label>

    <input id="donation" type="number" name="donation" required>

   <label for="subscribe"> Subscribe </label>

   <input type="checkbox" id="subscribe" name="suscribe">

    <input type="submit" 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/149.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

Welcome to the forum @Big_Jay,

Because you have changed the value of the name attribute in a couple of the input elements.

Please reset this step and try again being careful to change only what is asked in the instructions.

Happy coding