Debug a Donation Form - Debug a Donation Form

Tell us what’s happening:

Hi I’ve having this issue with this code?

Donation Form

Donation Form

<label for="name">Full Name:</label>
<input id="name" type="text" name="name" required>

<label for="email">Email Address:</label>
<input id="email" type="email" name="email" required>

<label for="number">Donation Amount ($):</label>
<input id="number" type="number" name="amount" 

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="name">Full Name:</label>
    <input id="name" type="text" name="name" required>

    <label for="email">Email Address:</label>
    <input id="email" type="email" name="email" required>

    <label for="number">Donation Amount ($):</label>
    <input id="number" type="number" name="amount" required>

    <input type="checkbox" name="newsletter">
    <label>Subscribe</label>

    <input type="submit" 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/145.0.0.0 Safari/537.36

Challenge Information:

Debug a Donation Form - Debug a Donation Form

What is the issue you are having? Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!