Tell us what’s happening:
Does anyone have an idea what they want on question 11 is there some sort of predifined map or the like. Any input or advice would be appreciated.
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>
Full Name:
<input type="text" name="name" for="text" required>
Email Address:
<input type="email" name="email"
for="email" required>
Donation Amount ($):
<input type="number" name="amount"
for="number" required
>
<input type="checkbox" name="newsletter" for="checkbox" >
Subscribe
<input type="submit" value="Send" for="submit">
<label id="text">Full Name:</label>
<label id="email">Email Address:</label><label id="checkbox">Donation Amount ($):</label>
<label id="submit">Subscribe</label>
</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/145.0.0.0 Safari/537.36
Challenge Information:
Debug a Donation Form - Debug a Donation Form