Tell us what’s happening:
I need help checking my code. I can’t pass test number 11. Am I missing something?
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="full_name" for="name">Full Name:</label>
<input type="text" id="full_name" name="name" required/>
<label id="email_only" for="email">Email Address:</label>
<input type="email" id="email_only" name="email" required>
<label id="donate_number" for="amount">Donation Amount ($):</label>
<input type="number" id="donate_number" name="amount" required/>
<input type="checkbox" id="news_letter" name="newsletter"/>
<label id="news_letter" for="newsletter">Subscribe</label>
<input type="submit" id="submit-only" 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/149.0.0.0 Safari/537.36
Challenge Information:
Debug a Donation Form - Debug a Donation Form