freeCodeCamp/curriculum/challenges/italian/14-responsive-web-design-22/learn-html-forms-by-buildin.../60f5d2776c854e069560fbe6.md

1.2 KiB

id title challengeType dashedName
60f5d2776c854e069560fbe6 Step 12 0 step-12

--description--

Il primo elemento fieldset conterrà i campi nome, email e password. Inizia aggiungendo quattro elementi label al primo fieldset.

--hints--

Dovresti aggiungere quattro elementi label.

assert.equal(document.querySelectorAll('label')?.length, 4);

Dovresti aggiungere gli elementi label al primo fieldset.

assert.equal(document.querySelector('fieldset')?.querySelectorAll('label')?.length, 4);

--seed--

--seed-contents--

<!DOCTYPE html>
<html>
  <head>
    <title>Registration Form</title>
      <link rel="stylesheet" type="text/css" href="styles.css" />
  </head>
  <body>
    <h1>Registration Form</h1>
    <p>Please fill out this form with the required information</p>
--fcc-editable-region--
    <form action='https://register-demo.freecodecamp.org'>
      <fieldset>

      </fieldset>
      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
--fcc-editable-region--
  </body>
</html>
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
    color: #f5f6f7;
}