From 483534c03a1b10c7ce8f741797106da30579138b Mon Sep 17 00:00:00 2001
From: lizantell <44316448+lizantell@users.noreply.github.com>
Date: Sun, 9 Dec 2018 02:20:11 +0000
Subject: [PATCH] Added accessibility info to the link text section (#24229)
---
guide/english/html/elements/a-tag/index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guide/english/html/elements/a-tag/index.md b/guide/english/html/elements/a-tag/index.md
index f985f342b0..f3609996f5 100644
--- a/guide/english/html/elements/a-tag/index.md
+++ b/guide/english/html/elements/a-tag/index.md
@@ -5,7 +5,7 @@ title: A Tag
The `` tag or _anchor_ element creates a hyperlink to another page or file. In order to link to a different page or file the `` tag must also contain a `href` attribute, which indicates the link's destination.
-The text between the opening and closing `` tags becomes the link.
+The text between the opening and closing `` tags becomes the link. This text should be a meaningful description of the link destination, and not a generic phrase such as 'click here'. This better enables users with screen readers to navigate amongst various links on a page and understand what content each one will link to.
By default, a linked page is displayed in the current browser window unless another target is specified.