Step 20 - Building a Magazine

Created ul, h4, li and p elements and copy/pasted the given texts.
However, it keep saying

Test - Sorry, your code does not pass. Keep trying.

Hint - Your ul element should have six li elements.

        <article class="brief-history">
          <h3 class="list-title">A Brief History</h3>
          <p>Of the Curriculum</p>
          <ul>
            <li><h4 class="list-subtitle">V1 - 2014</h4>
            <p>We launched freeCodeCamp with a simple list of 15 resources, including Harvard's CS50 and Stanford's Database Class.</p>
            </li>
            <li><h4 class="list-subtitle">V2 - 2015</h4>
            <p>We added interactive algorithm challenges.</p>
            </li>
            <li><h4 class="list-subtitle">V3 - 2015</h4>
            <p>We added our own HTML+CSS challenges (before we'd been relying on General Assembly's Dash course for these).</p>
            </li>
            <li><h4 class="list-subtitle">V4 - 2016</h4>
            <p>We expanded the curriculum to 3 certifications, including Front End, Back End, and Data Visualization. They each had 10 required projects, but only the Front End section had its own challenges. For the other certs, we were still using external resources like Node School.</p>
            </li>
            <li><h4 class="list-subtitle">V5 - 2017</h4>
            <p>We added the back end and data visualization challenges.</p>
            </li>
            <li><h4 class="list-subtitle">V6 - 2018</h4>
            <p>We launched 6 new certifications to replace our old ones. This was the biggest curriculum improvement to date.</p>
            </li>
          </ul>
        </article>

Please post the link to the Step

I must’ve gone through the code over 100 times but I still cannot find an error. I checked the spaces, the :, the spelling. Can’t think of anything else but I can’t solve it. 6 “li” were asked for and I have 6 “li”. What do I doooooooo? :frowning:

I’ve started from scratch once again but I’m again stuck at the same issue, where it tells me " Hint: Your ul element should have six li elements."
Please help me, anyone out there. :pray:

          <h3 class="list-title">A Brief History</h3>
          <p>Of the Curriculum</p>
          <ul>
            <li>
              <h4 class="list-subtitle">V1 - 2014</h4>
              <p>We launched freeCodeCamp with a simple list of 15 resources, including Harvard's CS50 and Stanford's Database Class.</p>
            </li>
            <li>
              <h4 class="list-subtitle">V2 - 2015</h4>
              <p>We added interactive algorithm challenges.</p>
            </li>
            <li>
              <h4 class="list-subtitle">V3 - 2015</h4>
              <p>We added our own HTML+CSS challenges (before we'd been relying on General Assembly's Dash course for these).</p>
            </li>
            <li>
              <h4 class="list-subtitle">V4 - 2016</h4>
              <p>We expanded the curriculum to 3 certifications, including Front End, Back End, and Data Visualization. They each had 10 required projects, but only the Front End section had its own challenges. For the other certs, we were still using external resources like Node School.</p>
            </li>
            <li>
              <h4 class="list-subtitle">V5 - 2017</h4>
              <p>We added the back end and data visualization challenges.</p>
            </li>
            <li>
              <h4 class="list-subtitle">V6 - 2018</h4>
              <p>We launched 6 new certifications to replace our old ones. This was the biggest curriculum improvement to date.</p>
            </li>
          </ul>
        </article>

Phew, managed to locate the error. :sweat_smile: Even if you’ve gone over 100s of times, to back again, because you know what? You will eventually find that simplest of error! :wink:

2 Likes