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

896 B

id title challengeType dashedName
61fd6343fb42013d99bcd7f3 Passo 2 0 step-2

--description--

Dentro do elemento body, aninhe um elemento section e um elemento main.

--hints--

O primeiro elemento dentro do elemento body deve ser seu elemento main.

assert(document.querySelector('body')?.children?.[0]?.localName === 'main');

Você deve ter um elemento section dentro do elemento main.

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

--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>
--fcc-editable-region--
  <body>
  </body>
--fcc-editable-region--
</html>