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

2.8 KiB

id title challengeType
5f07fb1579dc934717801375 Part 32 0

Description

It is time to add a new section. Add a third section element below the second section element.

Tests

tests:
  - text: "Your `section` element should have an opening tag. Opening tags have this syntax: `<elementName>`."
    testString: assert( document.querySelectorAll('section').length >= 3 );
  - text: You should only add one opening `section` tag. Please remove any extras.
    testString: assert( document.querySelectorAll('section').length === 3 );
  - text: Your `section` element should have a closing tag. Closing tags have a `/` just after the `<` character.
    testString: assert( code.match(/<\/section>/g).length >= 3 );
  - text: You should only add one closing `section` tag. Please remove any extras.
    testString: assert( code.match(/<\/section>/g).length === 3 );
  - text: All of the `section` elements should be between the opening and closing tags of the `main` element.
    testString: |
      const childrenOfMain = [ ...document.querySelector('main').children ];
      const sectionElemsFound = childrenOfMain.filter(child => {
        return child.nodeName === 'SECTION';
      });
      assert( sectionElemsFound.length === 3 );      
  - text: The last `section` element should have no content. Remove any HTML elements or text within the `section` element.
    testString: assert( $('main > section')[2].children.length === 0 );

Challenge Seed

<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://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
      </section>
      --fcc-editable-region--
      <section>
      <h2>Cat Lists</h2>
      <h3>Things cats love:</h3>
      <ul>
        <li>cat nip</li>
        <li>laser pointers</li>
        <li>lasagna</li>
      </ul>
      <figure>
        <img src="https://bit.ly/fcc-lasagna" alt="A slice of lasagna on a plate.">
        <figcaption>Cats <em>love</em> lasagna.</figcaption>  
      </figure>
      <h3>Top 3 things cats hate:</h3>
      <ol>
        <li>flea treatment</li>
        <li>thunder</li>
        <li>other cats</li>
      </ol>
      <figure>
        <img src="https://bit.ly/fcc-cats" alt="Five cats looking around a field.">
        <figcaption>Cats <strong>hate</strong> other cats.</figcaption>  
      </figure>
      </section>
      --fcc-editable-region--
    </main>
  </body>
</html>