Tell us what’s happening:
Please, for the love the Spaghetti Monster, help me. I’ve done this before and it was marked complete and now it isn’t and I keep getting stuck on “Failed:13. Your checkbox input should not have a required attribute.” I’ve reset, researched and retyped it all. I put it in word to see if I had too many spaces. I haven’t started crying, but I need help.
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Donation Form</title>
</head>
<body>
<form>
<label for="fullName">Full Name:</label>
<input type="text" id ="fullName" name="name" required>
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required>
<label for="Donation Amount ($)">Donation Amount ($):</label>
<input id="Donation Amount ($)" type="number" name="amount" required>
<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/143.0.0.0 Safari/537.36 Edg/143.0.0.0
Challenge Information:
Debug a Donation Form - Debug a Donation Form
