Debug a Donation Form - Debug a Donation Form

Tell us what’s happening:

o erro continua persistindo mesmo reiniciando não consigo achar o erro

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">requeried

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

 <label for="Donation Amount ($):">Donation Amount ($):</label>
<input type="number" name="amount">requeried
 <input type="checkbox" name="newsletter">
    <label for="subscribe">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/146.0.0.0 Safari/537.36

Challenge Information:

Debug a Donation Form - Debug a Donation Form

Oi @viviane.zablowski
Você pode revisar esta parte com atenção mais uma vez? Ela explica exatamente o que é necessário para este passo.
Acredito que a resposta já está lá, e uma releitura rápida pode deixar tudo mais claro.

Hi @viviane.zablowski ,

You have misspelled the boolean attribute required.

Should attributes be placed outside of an HTML element’s opening tag? You have also changed the label text for this input.

An id attribute’s value must be unique. Also, an id attribute cannot contain spaces.

HTML - The id attribute

Also, please review how to associate a label with an input element.

: The Label element - HTML | MDN

Happy coding!