Tell us what’s happening:
I do it this task but I have some problem in part 7 , 9,12,13 please anybody know that help me thanks
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Donation Form</title>
</head>
<body>
<form>
<label for="full-name">Full Name:</label>
<input id="full-name" type="text" required>
<label for="email">Email Address:</label>
<input type="email" id="email" required>
<label for="donation">Donation Amount ($):</label>
<input id="donation" type="number" required>
<label for="subscribe">Subscribe</label>
<input type="checkbox" id="subscribe" >
<input type="submit" value="Donate">
</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/150.0.0.0 Safari/537.36
Challenge Information:
Debug a Donation Form - Debug a Donation Form