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

841 B

id title challengeType dashedName
60f02e7361b68405e27b62a5 Step 6 0 step-6

--description--

All'interno dell'elemento body, aggiungi l'intestazione per il contenuto della pagina con un elemento un h1 con il testo Registration Form.

--hints--

Dovresti aggiungere l'elemento h1 all'interno del body.

assert.exists(document.querySelector('body > h1'));

Dovresti assegnare all'elemento h1 il testo Registration Form.

assert.equal(document.querySelector('body > h1')?.textContent, 'Registration Form');

--seed--

--seed-contents--

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
--fcc-editable-region--
  <body>

  </body>
--fcc-editable-region--
</html>