Tell us what’s happening:
I got wrong on fifth and thirteenth step, in fifth step i wrote required attribute to first input, and in thirteenth step i didnt write required attribute but it counted like i did
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Donation Form</title>
</head>
<body>
<h1>Support Our Charity</h1>
<form>
<!-- Full Name -->
<label for="full-name">Full Name:</label>
<input type="text" id="full-name" name="full-name" required>
<br><br>
<!-- Email Address -->
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required>
<br><br>
<!-- Donation Amount -->
<label for="amount">Donation Amount ($):</label>
<input type="number" id="amount" name="amount" required>
<br><br>
<!-- Subscribe Checkbox -->
<label for="subscribe">Subscribe</label>
<input type="checkbox" id="subscribe" name="subscribe">
<br><br>
<!-- Submit -->
<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/147.0.0.0 Safari/537.36
Challenge Information:
Debug a Donation Form - Debug a Donation Form

