From f48810ca936fc77a86f4d1cc6f7770d2add10f5f Mon Sep 17 00:00:00 2001
From: Tansica Sun <42325298+tjs13@users.noreply.github.com>
Date: Sun, 18 Nov 2018 14:15:12 -0800
Subject: [PATCH] Proper table formating with and
(#21605)
* Proper table formating with and
* Edit table headers and fix indentation
---
.../english/html/elements/table-tag/index.md | 64 ++++++++++++++-----
1 file changed, 48 insertions(+), 16 deletions(-)
diff --git a/guide/english/html/elements/table-tag/index.md b/guide/english/html/elements/table-tag/index.md
index af42757a3d..870b4d6e16 100644
--- a/guide/english/html/elements/table-tag/index.md
+++ b/guide/english/html/elements/table-tag/index.md
@@ -8,27 +8,59 @@ The `` tag allows you to display a table on your webpage.
### Example
```html
-
- Row 1, Cell 1 |
- Row 1, Cell 2 |
-
-
- Row 2, Cell 1 |
- Row 2, Cell 2 |
-
+
+
+ Full Name |
+ Job Role |
+ Location |
+
+
+
+
+ Sherlock Holmes |
+ Detective |
+ London |
+
+
+ Harry Potter |
+ Wizard |
+ Godric's Hollow |
+
+
+ Winnie the Pooh |
+ Honey Taster |
+ Five Hundred Acre Wood |
+
+
```
This code block would produce the following output:
-
- Row 1, Cell 1 |
- Row 1, Cell 2 |
-
-
- Row 2, Cell 1 |
- Row 2, Cell 2 |
-
+
+
+ Full Name |
+ Job Role |
+ Location |
+
+
+
+
+ Sherlock Holmes |
+ Detective |
+ London |
+
+
+ Harry Potter |
+ Wizard |
+ Godric's Hollow |
+
+
+ Winnie the Pooh |
+ Honey Taster |
+ Five Hundred Acre Wood |
+
+