From 03a576e7b169de9ee51ceda782f02902b9f6dbfd Mon Sep 17 00:00:00 2001 From: Gaurav Kumar Date: Thu, 20 Dec 2018 16:47:19 +0530 Subject: [PATCH] updated anchor definition (#25423) * updated anchor definition * Added list formatting --- guide/english/html/elements/a-tag/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/guide/english/html/elements/a-tag/index.md b/guide/english/html/elements/a-tag/index.md index f3609996f5..92ce4aba68 100644 --- a/guide/english/html/elements/a-tag/index.md +++ b/guide/english/html/elements/a-tag/index.md @@ -7,7 +7,11 @@ The `` tag or _anchor_ element creates a hyperlink to another page or file. I 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. +By default, a linked page is displayed in the current browser window unless another target is specified. The default link styles are as follows: +- An unvisited link is underlined and blue +- A visited link is underlined and purple +- An active link is underlined and red + #### Example: