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

764 B

id title challengeType dashedName
60f02e7361b68405e27b62a5 Passo 5 0 step-5

--description--

Dentro do body, crie um título para dar contexto ao conteúdo adicionando um h1 com o texto Registration Form.

--hints--

Você deve adicionar o h1 dentro do body.

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

Você deve atribuir ao elemento h1 o texto Registration Form.

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

--seed--

--seed-contents--

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

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