From f365204cc86c724b66d3dce68f9239c9595955fe Mon Sep 17 00:00:00 2001
From: Minna <44296663+Minna1991@users.noreply.github.com>
Date: Thu, 22 Nov 2018 05:00:02 +0100
Subject: [PATCH] Add the text "### Nested HTML lists" to (#22946)
* Add the text "### Nested HTML lists" to
### Nested HTML Lists
List can be nested (lists inside lists):
##### Code:
##### Output:
* Fixed formatting and reordered sections
---
guide/english/html/lists/index.md | 35 +++++++++++++++++++++++++++++--
1 file changed, 33 insertions(+), 2 deletions(-)
diff --git a/guide/english/html/lists/index.md b/guide/english/html/lists/index.md
index 71b830cd92..87df06aec8 100644
--- a/guide/english/html/lists/index.md
+++ b/guide/english/html/lists/index.md
@@ -118,8 +118,39 @@ which would end up looking like:
-## More Information:
+## Nested HTML Lists
+
+List can be nested (lists inside lists):
+
+##### Code:
+```html
+
+ - Coffee
+ - Tea
+
+ - Black tea
+ - Green tea
+
+
+ - Milk
+
+```
+
+##### Output:
+
+
+ - Coffee
+ - Tea
+
+ - Black tea
+ - Green tea
+
+
+ - Milk
+
+
+#### More Information:
-
* [HTML lists on w3schools](https://www.w3schools.com/html/html_lists.asp)
* [HTML lists on WebPlatform](https://webplatform.github.io/docs/guides/html_lists/)
+