From 11f4dfc466a41e6e5dfea12ca9adc517383a4be9 Mon Sep 17 00:00:00 2001 From: Kristen Kinnear-Ohlmann Date: Tue, 11 Dec 2018 14:23:29 -0600 Subject: [PATCH] Content style edits (#25699) * Content style edits Added 2 spaces after each line in the More Attributes section to stack the elements. Edited 2 sentences to clarify the meaning and usage of the information contained in the sentence, as well as ensuring tag names were displaying as code elements. * fix: removed extra space at end of lines --- guide/english/html/attributes/a-href-attribute/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/html/attributes/a-href-attribute/index.md b/guide/english/html/attributes/a-href-attribute/index.md index d032a7be130..c39e1c5ab2f 100644 --- a/guide/english/html/attributes/a-href-attribute/index.md +++ b/guide/english/html/attributes/a-href-attribute/index.md @@ -38,13 +38,13 @@ The `` attribute is supported by all browsers. ``` ### In-page anchors -It's also possible to set an anchor to certain place of the page. To do this you should first place a tab at location on the page with tag `` and necessary attribute "name" with any keyword description in it, like this: +It's also possible to set an anchor to a certain place on the page. To do this, you should first place an `` tag at the location and include the necessary attribute `name` with any keyword description in it, like this: ```html ``` -Any description between tags is not required. After that you can place a link leading to this anchor at any place on the same page. To do this you should use tag `` with necessary attribute "href" with symbol # (sharp) and key-word description of the anchor, like this: +A description between tags is not required. You can now place a link leading to this anchor at any place on the same page. To do this, you should use the `` tag with the necessary attribute "href" with symbol # (sharp) and key-word description of the anchor, like this: ```html Go to Top