diff --git a/guide/english/html/tables/index.md b/guide/english/html/tables/index.md
index b114b61a57..8cab499a49 100644
--- a/guide/english/html/tables/index.md
+++ b/guide/english/html/tables/index.md
@@ -92,7 +92,83 @@ Result:
+## Adding/Removing table border
+The table border width can be increased/decreased using the table border attribute.
+
+### Table Border Example
+```html
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+```
+Result:
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+
+```html
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+```
+Result:
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+
+```html
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+```
+Result:
+
+
+ Fruits |
+ Quantity |
+
+
+ Apple |
+ 2 |
+
+
+
+
#### More Information:
-
MDN Article on the HTML