<section id="description"> HTML tiene otro elemento especial para crear <code>ordered lists</code> o listas numeradas. Las listas ordenadas comienzan con un elemento <code><ol></code> apertura, seguido de cualquier número de elementos <code><li></code> . Finalmente, las listas ordenadas se cierran con <code></ol></code> Por ejemplo: <blockquote> <ol> <br> <li> Garfield </li> <br> <li> Sylvester </li> <br> </ol> </blockquote> crearía una lista numerada de "Garfield" y "Sylvester". </section>
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.");'
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.");'
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.");'
```
</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>
<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>