diff --git a/guide/english/html/tables/index.md b/guide/english/html/tables/index.md
index feb69a0eb8..e3f85426bf 100644
--- a/guide/english/html/tables/index.md
+++ b/guide/english/html/tables/index.md
@@ -91,6 +91,58 @@ Result:
+
+
+### Using Row Span and Col Span Attribute
+With **Row Span** allows a single table cell to span the height of more than one cell or row.
+
+Example:
+
+```html
+
+
+ Firstname |
+ Lastname |
+ Age |
+
+
+ Jill |
+ Smith |
+ 50 |
+
+
+ Eve |
+ Jackson |
+
+
+```
+
+With **Col Span** allows a single table cell to span the width of more than one cell or column.
+
+Example:
+
+```html
+
+
+ Firstname |
+ Lastname |
+ Age |
+
+
+ Jill |
+ Smith |
+ 50 |
+
+
+ Eve |
+ Jackson |
+ 50 |
+
+
+ Total: 2 Response |
+
+
+```
## Adding/Removing table border
The table border width can be increased/decreased using the table border attribute.