Debug a Donation Form - Debug a Donation Form

Tell us what’s happening:

I do it this task but I have some problem in part 7 , 9,12,13 please anybody know that help me thanks

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Donation Form</title>
</head>
<body>
<form>
  <label for="full-name">Full Name:</label>
  <input id="full-name" type="text" required>

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

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

  <label for="subscribe">Subscribe</label>
  <input type="checkbox" id="subscribe" >

  <input type="submit" value="Donate">
</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/150.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,

You have removed all of the name attributes in the starting code, so the tests can’t find those elements.

Please reset this step and try again, being careful only to add what is asked without changing the starting code.