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 {{HTMLElement("ul")}} -
<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)}} @@ -302,9 +302,9 @@ an extended quotation.</blockquote>
An ordered list {{HTMLElement("ol")}} -
<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)}} @@ -314,7 +314,7 @@ an extended quotation.</blockquote>
{{HTMLElement("dl")}}
<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>