diff --git a/guide/english/html/elements/label-tag/index.md b/guide/english/html/elements/label-tag/index.md
index 9a07a57763..0b9064e8df 100644
--- a/guide/english/html/elements/label-tag/index.md
+++ b/guide/english/html/elements/label-tag/index.md
@@ -3,23 +3,23 @@ title: Label Tag
---
# Label Tag
-<***label***> defines a label for an type element/tag.
+<***label***> defines a label for an ` ` type element/tag.
### Usage
```
Label
```
-As you can see, the *for* attribute of the tag should be equal to the id attribute of the related element to bind them together.
+As you can see, the *for* attribute of the `` tag should be equal to the id attribute of the related element to bind them together.
### Platform Support
|Browser|Element Support|
|:-----:|:-------------:|
-|Internet Explorer|:white_check_mark:|
-|Mozilla Firefox|:white_check_mark:|
-|Google Chrome|:white_check_mark:|
-|Opera|:white_check_mark:|
-|Safari|:white_check_mark:|
+|Internet Explorer|Yes|
+|Mozilla Firefox|Yes|
+|Google Chrome|Yes|
+|Opera|Yes|
+|Safari|Yes|
### Attributes
|Attribute| Value|Description|
@@ -36,30 +36,6 @@ The <**label**> tag supports the Event Attributes in HTML.
> The <**label**> element does not render as anything special for the user. However, it provides a usability improvement for mouse users, because if the user clicks on the text within the element, it toggles the control.
-
-
#### More Information:
-[https://www.w3schools.com/jsref/dom_obj_label.asp](https://www.w3schools.com/jsref/dom_obj_label.asp)
-=======
-
-## Label
-The `` tag defines a label for an ` ` element.
-
-A label can be bound to an element either by using the "for" attribute, or by placing the element inside the element.
-```html
-Do you like peas?
-
-
-```
-
-```html
-Do you like peas?
-
-
-```
-
-#### More Information:
-
-
-MDN - Tabel Tag
-W3School - Label Tag
\ No newline at end of file
+[MDN - Label Tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label)
+[W3School - Label Tag](https://www.w3schools.com/tags/tag_label.asp)