freeCodeCamp/curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-003.md

1.3 KiB

id title challengeType dashedName
5dc17d3bf86c76b9248c6eb4 Part 3 0 part-3

--description--

Paragraph (p) elements are used to create paragraph text on websites.

Create a paragraph (p) element below your h2 element, and give it the text Click here to view more cat photos.

--hints--

Your p element should have an opening tag. Opening tags have the following syntax: <elementName>.

assert(document.querySelector('p'));

Your p element should have a closing tag. Closing tags have a / just after the < character.

assert(code.match(/<\/p\>/));

Your p element's text should be Click here to view more cat photos. You have either omitted the text or have a typo.

const extraSpacesRemoved = document
  .querySelector('p')
  .innerText.replace(/\s+/g, ' ');
assert(extraSpacesRemoved.match(/click here to view more cat photos\.?$/i));

Your p element should be below the h2 element. You have them in the wrong order.

const collection = [...document.querySelectorAll('h2,p')].map(
  (node) => node.nodeName
);
assert(collection.indexOf('H2') < collection.indexOf('P'));

--seed--

--seed-contents--

<html>
  <body>
    <h1>CatPhotoApp</h1>
--fcc-editable-region--
    <h2>Cat Photos</h2>
--fcc-editable-region--
  </body>
</html>