diff --git a/guide/english/html/elements/strong-tag/index.md b/guide/english/html/elements/strong-tag/index.md index 8dd33d0eee..732d45778a 100644 --- a/guide/english/html/elements/strong-tag/index.md +++ b/guide/english/html/elements/strong-tag/index.md @@ -3,18 +3,22 @@ title: Strong Tag --- # Strong Tag -The HTML < ***strong***> tag is a text emphasis tag which when used, results in, bold display of text, placed within the tags. +The `` tag is used to give importance to text in an HTML document. This can be done by wrapping the text you would like to be emphasized in an `` tag. Most browsers will render text wrapped in an `` tag as bold. -### Usage +Only the Global Attributes apply to the `` tag ie., there are no specific attributes for the `` tag. + +Note: The `` tag should not be used to stylistically bold text. + +A `` tag can also be referred to as a **strong element**. + +### Example: ``` - Hello World! + +

+ This is important. +

+ ``` -The above code results in - -**Hello World!** - -This tag is also commonly referred to as the **strong element** . When it comes to attributes, only the Global Attributes apply to **strong** -tag ie., there are no specific attributes for <**strong**> tag. ### Browser Support | Name of the Browser | Support | @@ -26,22 +30,7 @@ tag ie., there are no specific attributes for <**strong**> tag. |Opera|Yes| |Safari|Yes| -The `` tag is used to give importance to text in an HTML document. This can be done by wrapping the text you would like to be emphasized in an `` tag. Most browsers will render text wrapped in an `` tag as bold. -Note: The `` tag should not be used to stylistically bold text. - -### Example: -``` - -

- This is important. -

- -``` - - #### More Information: - [strong tag: w3schools](https://www.w3schools.com/tags/tag_strong.asp) - [strong tag: techonthenet](https://www.techonthenet.com/html/elements/strong_tag.php) - -