Fixed interpunction in the introduction paragraph (#32157)

* Fixed interpunction in the introduction paragraph

* fix: made suggested change
This commit is contained in:
Vedrana_R 2019-03-12 22:53:17 +01:00 committed by Christopher McCormack
parent 086956b901
commit 0ffdae1093

View File

@ -8,7 +8,8 @@ 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>&#60;ol&#62;</code> element, followed by any number of <code>&#60;li&#62;</code> elements. Finally, ordered lists close with a <code>&#60;/ol&#62;</code>
Ordered lists start with an opening <code>&#60;ol&#62;</code> element, followed by any number of <code>&#60;li&#62;</code> elements. Finally, ordered lists are closed with the <code>&#60;/ol&#62;</code> tag.
For example:
<blockquote>&#60;ol&#62;<br>&nbsp;&nbsp;&#60;li&#62;Garfield&#60;/li&#62;<br>&nbsp;&nbsp;&#60;li&#62;Sylvester&#60;/li&#62;<br>&#60;/ol&#62;</blockquote>
would create a numbered list of "Garfield" and "Sylvester".