diff --git a/guide/english/html/lists/index.md b/guide/english/html/lists/index.md
index 87df06aec8b..a0ca12417ae 100644
--- a/guide/english/html/lists/index.md
+++ b/guide/english/html/lists/index.md
@@ -117,6 +117,28 @@ which would end up looking like:
An awesome non-profit organization teaching people how to code.
+## Nested HTML Lists
+ List can be nested (lists inside lists):
+```html
+
+ - Coffee
+ - Tea
+
+ - Black tea
+ - Green tea
+
+
+ - Milk
+
+```
+
+is displayed as:
+
+- Coffee
+- Tea
+ - Black tea
+ - Green tea
+- Milk
## Nested HTML Lists