Impara i moduli HTML realizzando un modulo di registrazione - Step 17

Dicci cosa sta succedendo
Buongiorno, sono uno studente Italiano ed è da giorni che scrivo il codice dell’esercizio 17, ma non me l’ho accetta ed esce sistematicamente lo stesso errore:

Test

Il tuo codice non è corretto. Tieni duro.

Suggerimento

Dovresti aggiungere il primo input il testo Enter Your First Name: dell’elemento label e includere uno spazio dopo i due punti.

Qualcuno mi può aiutare a capire dov’è l’errore perchè lo spazio dopo i due punti c’è.
Grazie

Il tuo codice fino ad ora

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <h1>Registration Form</h1>
    <p>Please fill out this form with the required information</p>
    <form method="post" action='https://register-demo.freecodecamp.org'>

<!-- User Editable Region -->

      <fieldset>
        <label for="first-name">Enter Your First Name: <input id="first-name" type="text" name="first-name"></label>
        <label for="last-name">Enter Your Last Name: <input id="last-name" type="text" name="last-name"></label>
        <label for="new-email">Enter Your Email: <input id="new-email" type="email" name="new-email"></label>
        <label for="new-password">Create a New Password: <input id="new-password" type="password" name="new-password"></label>
      </fieldset>

<!-- User Editable Region -->

      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
  </body>
</html>
/* file: styles.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

label {
  display: block;
  margin: 0.5rem 0;
}

Informazioni del tuo browser:

Lo user agent è: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36

Sfida: Impara i moduli HTML realizzando un modulo di registrazione - Step 17

Link alla sfida:

Buongiorno, grazie a tutti, ho risolto.

Ho capito che bisognava inserire solo l’elemento

Vi ringrazio lo stesso.

Il suggerimento sembra avere un errore di traduzione, riferiamo subito al language lead italiano! (@Dario_DC)
image

Grazie per la segnalazione, dovrebbe essere già stato corretto.