diff --git a/files/en-us/learn/html/cheatsheet/index.md b/files/en-us/learn/html/cheatsheet/index.md index b4191cf605fbcc0..91dded7fd6c882e 100644 --- a/files/en-us/learn/html/cheatsheet/index.md +++ b/files/en-us/learn/html/cheatsheet/index.md @@ -291,9 +291,9 @@ an extended quotation.</blockquote>An unordered list
<ul>
- <li>I'm an item</li>
- <li>I'm another item</li>
+<ul> + <li>I'm an item</li> + <li>I'm another item</li> </ul>{{EmbedLiveSample("ul-example", 100, 100)}}
<ol>
- <li>I'm the first item</li>
- <li>I'm the second item</li>
+<ol> + <li>I'm the first item</li> + <li>I'm the second item</li> </ol>{{EmbedLiveSample("ol-example", 100, 100)}}
<dl> - <dt>A Term</dt>
+ <dt>A Term</dt> <dd>Definition of a term</dd> <dt>Another Term</dt> <dd>Definition of another term</dd>