From 17b716577b884399b0319bff4d15fa85e35091c7 Mon Sep 17 00:00:00 2001 From: Andi Pieper Date: Wed, 30 Oct 2024 14:53:04 +0100 Subject: [PATCH] remove
tags from
 blocks

---
 files/en-us/learn/html/cheatsheet/index.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

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>