freeCodeCamp/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-html-by-building-a-ca.../5dfa371beacea3f48c6300af.md

2.2 KiB

id title challengeType dashedName
5dfa371beacea3f48c6300af Passo 19 0 step-19

--description--

Quando você adiciona um elemento de título menor à página, é implícito que você está iniciando uma nova subseção.

Depois do último elemento h2 do segundo elemento section, adicione um elemento h3 com este texto:

Things cats love:

--hints--

O segundo elemento section parece não ter a tag de abertura, a de fechamento ou as duas tags.

assert(
  document.querySelectorAll('main > section')[1] &&
    code.match(/\<\/section>/g).length == 2
);

O elemento h3 deve estar logo acima da tag de fechamento de fechamento do segundo elemento section.

assert(
  document.querySelectorAll('main > section')[1].lastElementChild.nodeName ===
    'H3'
);

O elemento h3 logo acima da tag de fechamento do segundo elemento section deve ter o texto Things cats love:. Certifique-se de incluir os dois pontos ao final do texto.

assert(
  document
    .querySelectorAll('main > section')[1]
    .lastElementChild.innerText.toLowerCase()
    .replace(/\s+/g, ' ') === 'things cats love:'
);

Deve haver um elemento h2 com o texto Cat Lists acima do último elemento h3 que está aninhado no último elemento section. Você pode ter excluído o elemento h2 acidentalmente.

const secondSectionLastElemNode = document.querySelectorAll('main > section')[1]
  .lastElementChild;
assert(
  secondSectionLastElemNode.nodeName === 'H3' &&
    secondSectionLastElemNode.previousElementSibling.innerText
      .toLowerCase()
      .replace(/\s+/g, ' ') === 'cat lists'
);

--seed--

--seed-contents--

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <main>
      <section>
        <h2>Cat Photos</h2>
        <!-- TODO: Add link to cat photos -->
        <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
        <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
      </section>
--fcc-editable-region--
      <section>
        <h2>Cat Lists</h2>
      </section>
--fcc-editable-region--
    </main>
  </body>
</html>