freeCodeCamp/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-more-about-css-pseudo.../61fd66c687e610436494c6f1.md

901 B

id title challengeType dashedName
61fd66c687e610436494c6f1 Passo 3 0 step-3

--description--

Dentro do elemento section, adicione um elemento h1 e um elemento span.

--hints--

O elemento section deve ter um elemento h1.

assert(document.querySelector('section')?.children?.[0]?.localName === 'h1');

O elemento h1 deve ter um elemento span.

assert(document.querySelector('h1')?.children?.[0]?.localName === 'span');

--seed--

--seed-contents--

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Balance Sheet</title>
    <link rel="stylesheet" type="text/css" href="./styles.css">
  </head>
  <body>
    <main>
--fcc-editable-region--
      <section>
      </section>
--fcc-editable-region--
    </main>
  </body>
</html>