From 0ffdae10930d5c71a099c2537475ff0cd12c3712 Mon Sep 17 00:00:00 2001 From: Vedrana_R Date: Tue, 12 Mar 2019 22:53:17 +0100 Subject: [PATCH] Fixed interpunction in the introduction paragraph (#32157) * Fixed interpunction in the introduction paragraph * fix: made suggested change --- .../basic-html-and-html5/create-an-ordered-list.english.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/create-an-ordered-list.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/create-an-ordered-list.english.md index 49884d2172..e13ba6861d 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/create-an-ordered-list.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/create-an-ordered-list.english.md @@ -8,7 +8,8 @@ videoUrl: 'https://scrimba.com/p/pVMPUv/cQ3B8TM' ## Description
HTML has another special element for creating ordered lists, or numbered lists. -Ordered lists start with an opening <ol> element, followed by any number of <li> elements. Finally, ordered lists close with a </ol> +Ordered lists start with an opening <ol> element, followed by any number of <li> elements. Finally, ordered lists are closed with the </ol> tag. + For example:
<ol>
  <li>Garfield</li>
  <li>Sylvester</li>
</ol>
would create a numbered list of "Garfield" and "Sylvester".