Debug a Donation Form - Debug a Donation Form

Tell us what’s happening:

The third input element is requesting for a required attribute, but it is still showing the same error even after putting it

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

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

    <label for="dollar">Donation Amount ($):</label>
<input type="number" required id="dollar" name="dollar">
    <label for="newsletter">Subscribe</label>
    <input type="checkbox" id="newsletter" name="newsletter">
    
    <input type="submit" value="Send">

  </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/147.0.0.0 Safari/537.36

Challenge Information:

Debug a Donation Form - Debug a Donation Form

is there a reason for which you changed the name attributes? was there something wrong with them?