2018-10-04 14:37:37 +01:00
---
id: bad87fee1348bd9aedf08828
title: Create an Ordered List
challengeType: 0
videoUrl: 'https://scrimba.com/p/pVMPUv/cQ3B8TM'
---
## Description
<section id='description'>
HTML has another special element for creating <code>ordered lists</code>, or numbered lists.
Ordered lists start with an opening <code>< ;ol> ;</code> element, followed by any number of <code>< ;li> ;</code> elements. Finally, ordered lists close with a <code>< ;/ol> ;</code>
For example:
<blockquote>< ;ol> ;<br> < ;li> ;Garfield< ;/li> ;<br> < ;li> ;Sylvester< ;/li> ;<br>< ;/ol> ;</blockquote>
would create a numbered list of "Garfield" and "Sylvester".
</section>
## Instructions
<section id='instructions'>
Create an ordered list of the top 3 things cats hate the most.
</section>
## Tests
<section id='tests'>
```yml
tests:
2018-10-20 21:02:47 +03:00
- text: You should have an ordered list for "Top 3 things cats hate:"
testString: assert((/Top 3 things cats hate:/i).test($("ol").prev().text()), 'You should have an ordered list for "Top 3 things cats hate:"');
- text: You should have an unordered list for "Things cats love:"
testString: assert((/Things cats love:/i).test($("ul").prev().text()), 'You should have an unordered list for "Things cats love:"');
2018-10-04 14:37:37 +01:00
- text: You should have only one <code>ul</code> element.
2018-10-20 21:02:47 +03:00
testString: assert.equal($("ul").length, 1, 'You should have only one <code>ul</code> element.');
2018-10-04 14:37:37 +01:00
- text: You should have only one <code>ol</code> element.
2018-10-20 21:02:47 +03:00
testString: assert.equal($("ol").length, 1, 'You should have only one <code>ol</code> element.');
2018-10-04 14:37:37 +01:00
- text: You should have three <code>li</code> elements within your <code>ul</code> element.
2018-10-20 21:02:47 +03:00
testString: assert.equal($("ul li").length, 3, 'You should have three <code>li</code> elements within your <code>ul</code> element.');
2018-10-04 14:37:37 +01:00
- text: You should have three <code>li</code> elements within your <code>ol</code> element.
2018-10-20 21:02:47 +03:00
testString: assert.equal($("ol li").length, 3, 'You should have three <code>li</code> elements within your <code>ol</code> element.');
2018-10-04 14:37:37 +01:00
- text: Make sure your <code>ul</code> element has a closing tag.
2018-10-20 21:02:47 +03:00
testString: assert(code.match(/<\/ul>/g) && code.match(/<\/ul>/g).length === code.match(/<ul>/g).length, 'Make sure your <code>ul</code> element has a closing tag.');
2018-10-04 14:37:37 +01:00
- text: Make sure your <code>ol</code> element has a closing tag.
2018-10-20 21:02:47 +03:00
testString: assert(code.match(/<\/ol>/g) && code.match(/<\/ol>/g).length === code.match(/<ol>/g).length, 'Make sure your <code>ol</code> element has a closing tag.');
2018-10-04 14:37:37 +01:00
- text: Make sure your <code>li</code> element has a closing tag.
2018-10-20 21:02:47 +03:00
testString: assert(code.match(/<\/li>/g) && code.match(/<li>/g) && code.match(/<\/li>/g).length === code.match(/<li>/g).length, 'Make sure your <code>li</code> element has a closing tag.');
2018-10-04 14:37:37 +01:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='html-seed'>
```html
<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>
2018-10-08 01:01:53 +01:00
2018-10-04 14:37:37 +01:00
<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
2018-10-08 01:01:53 +01:00
2018-10-04 14:37:37 +01:00
<p>Things cats love:</p>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
2018-10-08 01:01:53 +01:00
2018-10-04 14:37:37 +01:00
</main>
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>