Tell us what’s happening:
what the problem step 5 and step 13 I need your help to fix this
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 for="full-name">Full Name:</label>
<input type="text" id="full-name" name="full-name" required>
<br><br>
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required>
<br><br>
<label for="amount">Donation Amount ($):</label>
<input type="number" id="amount" name="amount" required>
<br><br>
<label for="subscribe">Subscribe</label>
<input type="checkbox" id="subscribe" name="subscribe">
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0