From 7117dbd980b51c55cce89994607e140089a39ea1 Mon Sep 17 00:00:00 2001 From: BoopMehNose <33704699+BoopMehNose@users.noreply.github.com> Date: Fri, 21 Dec 2018 23:31:42 -0500 Subject: [PATCH] Update Note and Em tag description (#33811) I added clarification for the use of the tag and expanded the note on "stylistic" use. --- guide/english/html/elements/em-tag/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/html/elements/em-tag/index.md b/guide/english/html/elements/em-tag/index.md index cb16e5fb45..f8f63823b5 100644 --- a/guide/english/html/elements/em-tag/index.md +++ b/guide/english/html/elements/em-tag/index.md @@ -3,9 +3,9 @@ title: Em Tag --- ## Em Tag -The `` tag is used to *emphasize* 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 italicized. +The `` tag is used to *emphasize* text in an HTML document. This can be done by wrapping the text you would like to be emphasized in an `` tag and an `` tag respectively. Most browsers will render text wrapped in an `` tag as italicized. -Note: The `` tag should not be used to stylistically italicize text. The `` tag is used to stress emphasis on text. +Note: The `` tag should not be used to stylistically italicize text. The `` tag is used to stress emphasis on text. Typically, CSS formatting is used to stylistically italicize text. ### Example: ```