Tell us what’s happening:
I’m a beginner yes but this is the one question I am so confused about on this bootcamp. Amazing to be a part of and join in but this Donation form is confusing me, it wants me to remove the “required” from the check box when I’m there wearing glasses and doing research. I cant actually figure out whats what!!!
I cant seem to even get the Labels and Input right, I have been genuinely been working through this for months. so so confused !
thanks for any help with this! I
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 id="name" for="name">Full Name:</label>
<input type="text" name="name" id="name" required />
<label for="email" id="email">Email Address:</label>
<input required type="text" name="email" id="email" />
<label for="donation" id="donation">Donation Amount ($):</label>
<input required type="number" name="donation" id="donation" />
<label for="subscribe">Subscribe</label>
<input type="checkbox" name="subscribe" id="subscribe" />
<input type="submit" value="donate" />
</form>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36
Challenge Information:
Debug a Donation Form - Debug a Donation Form